blob: c1a82b34934081216f967267046083e9210a43c3 [file] [log] [blame]
btolsch762c4da2018-03-19 12:27:00 -07001# Copyright 2018 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
mark a. foltzc28ca402018-07-19 16:11:32 -07005# All compilable non-test targets in the repository (both executables and
6# source_sets).
btolsch9d6900c2018-05-30 18:22:53 -07007group("gn_all") {
mark a. foltzc28ca402018-07-19 16:11:32 -07008 deps = [
mark a. foltz4bb631b2018-07-18 17:30:17 -07009 "//api",
mark a. foltzc28ca402018-07-19 16:11:32 -070010 "//base",
11 "//platform",
12 "//sample:hello",
13 ]
14}
btolschb4893e62018-05-28 22:03:07 -070015
mark a. foltzc28ca402018-07-19 16:11:32 -070016executable("unittests") {
17 testonly = true
btolschb4893e62018-05-28 22:03:07 -070018 deps = [
btolsch6692c4c2018-05-31 17:38:09 -070019 "//api:api_unittests",
btolschb4893e62018-05-28 22:03:07 -070020 "//base:base_unittests",
mark a. foltzc28ca402018-07-19 16:11:32 -070021 "//sample:hello_unittests",
btolsch253cbce2018-07-26 00:32:19 -070022 "//third_party/googletest:gtest_main",
btolsch762c4da2018-03-19 12:27:00 -070023 ]
24}