btolsch | 762c4da | 2018-03-19 12:27:00 -0700 | [diff] [blame] | 1 | # 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. foltz | c28ca40 | 2018-07-19 16:11:32 -0700 | [diff] [blame^] | 5 | # All compilable non-test targets in the repository (both executables and |
| 6 | # source_sets). |
btolsch | 9d6900c | 2018-05-30 18:22:53 -0700 | [diff] [blame] | 7 | group("gn_all") { |
mark a. foltz | c28ca40 | 2018-07-19 16:11:32 -0700 | [diff] [blame^] | 8 | deps = [ |
| 9 | "//base", |
| 10 | "//platform", |
| 11 | "//sample:hello", |
| 12 | ] |
| 13 | } |
btolsch | b4893e6 | 2018-05-28 22:03:07 -0700 | [diff] [blame] | 14 | |
mark a. foltz | c28ca40 | 2018-07-19 16:11:32 -0700 | [diff] [blame^] | 15 | executable("unittests") { |
| 16 | testonly = true |
btolsch | b4893e6 | 2018-05-28 22:03:07 -0700 | [diff] [blame] | 17 | deps = [ |
| 18 | "//base:base_unittests", |
mark a. foltz | c28ca40 | 2018-07-19 16:11:32 -0700 | [diff] [blame^] | 19 | "//sample:hello_unittests", |
btolsch | 762c4da | 2018-03-19 12:27:00 -0700 | [diff] [blame] | 20 | ] |
| 21 | } |