blob: 9a8d036930f5e29942a7985e8ca8151698521825 [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",
btolsch16122122018-08-30 16:48:23 -070013 "//third_party/chromium_quic",
mark a. foltzc28ca402018-07-19 16:11:32 -070014 ]
15}
btolschb4893e62018-05-28 22:03:07 -070016
mark a. foltzc28ca402018-07-19 16:11:32 -070017executable("unittests") {
18 testonly = true
btolschb4893e62018-05-28 22:03:07 -070019 deps = [
btolsch6692c4c2018-05-31 17:38:09 -070020 "//api:api_unittests",
btolschb4893e62018-05-28 22:03:07 -070021 "//base:base_unittests",
btolschbd9ca072018-08-30 15:57:32 -070022 "//discovery/mdns:mdns_unittests",
mark a. foltzc28ca402018-07-19 16:11:32 -070023 "//sample:hello_unittests",
btolsch253cbce2018-07-26 00:32:19 -070024 "//third_party/googletest:gtest_main",
btolsch762c4da2018-03-19 12:27:00 -070025 ]
26}