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 = [ |
mark a. foltz | 4bb631b | 2018-07-18 17:30:17 -0700 | [diff] [blame] | 9 | "//api", |
mark a. foltz | c28ca40 | 2018-07-19 16:11:32 -0700 | [diff] [blame] | 10 | "//base", |
mark a. foltz | a11bffe | 2018-09-04 11:19:49 -0700 | [diff] [blame] | 11 | "//discovery/mdns:embedder_demo", |
mark a. foltz | c28ca40 | 2018-07-19 16:11:32 -0700 | [diff] [blame] | 12 | "//platform", |
| 13 | "//sample:hello", |
Jordan Bayles | 9eb0974 | 2019-01-15 14:04:52 -0800 | [diff] [blame] | 14 | "//third_party/abseil", |
btolsch | 1612212 | 2018-08-30 16:48:23 -0700 | [diff] [blame] | 15 | "//third_party/chromium_quic", |
mark a. foltz | a11bffe | 2018-09-04 11:19:49 -0700 | [diff] [blame] | 16 | "//third_party/chromium_quic:demo_client", |
| 17 | "//third_party/chromium_quic:demo_server", |
btolsch | 3184629 | 2018-09-10 10:54:06 -0700 | [diff] [blame] | 18 | "//third_party/tinycbor", |
btolsch | 3f0bfe4 | 2018-10-18 15:04:05 -0700 | [diff] [blame] | 19 | "//tools/cddl", |
mark a. foltz | c28ca40 | 2018-07-19 16:11:32 -0700 | [diff] [blame] | 20 | ] |
| 21 | } |
btolsch | b4893e6 | 2018-05-28 22:03:07 -0700 | [diff] [blame] | 22 | |
Jordan Bayles | b69fe0a | 2019-02-14 18:15:41 -0800 | [diff] [blame] | 23 | executable("demo") { |
| 24 | sources = [ |
| 25 | "//demo/demo.cc", |
| 26 | ] |
btolsch | 79998fe | 2018-09-18 14:58:09 -0700 | [diff] [blame] | 27 | |
Jordan Bayles | b69fe0a | 2019-02-14 18:15:41 -0800 | [diff] [blame] | 28 | deps = [ |
| 29 | "//api:api_with_chromium_quic", |
| 30 | "//base", |
| 31 | "//discovery/mdns", |
| 32 | "//platform", |
| 33 | ] |
btolsch | 79998fe | 2018-09-18 14:58:09 -0700 | [diff] [blame] | 34 | } |
| 35 | |
mark a. foltz | c28ca40 | 2018-07-19 16:11:32 -0700 | [diff] [blame] | 36 | executable("unittests") { |
| 37 | testonly = true |
btolsch | b4893e6 | 2018-05-28 22:03:07 -0700 | [diff] [blame] | 38 | deps = [ |
btolsch | 6692c4c | 2018-05-31 17:38:09 -0700 | [diff] [blame] | 39 | "//api:api_unittests", |
btolsch | b4893e6 | 2018-05-28 22:03:07 -0700 | [diff] [blame] | 40 | "//base:base_unittests", |
btolsch | bd9ca07 | 2018-08-30 15:57:32 -0700 | [diff] [blame] | 41 | "//discovery/mdns:mdns_unittests", |
btolsch | 3f0bfe4 | 2018-10-18 15:04:05 -0700 | [diff] [blame] | 42 | "//msgs:unittests", |
Yuri Wiitala | eb8eee7 | 2019-03-26 15:52:43 -0700 | [diff] [blame] | 43 | "//platform:platform_unittests", |
mark a. foltz | c28ca40 | 2018-07-19 16:11:32 -0700 | [diff] [blame] | 44 | "//sample:hello_unittests", |
Jordan Bayles | 9eb0974 | 2019-01-15 14:04:52 -0800 | [diff] [blame] | 45 | "//third_party/abseil", |
btolsch | 253cbce | 2018-07-26 00:32:19 -0700 | [diff] [blame] | 46 | "//third_party/googletest:gtest_main", |
btolsch | 762c4da | 2018-03-19 12:27:00 -0700 | [diff] [blame] | 47 | ] |
| 48 | } |