blob: c163babf2500647d8e3446a2aedbf7d92e07fbdb [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 = [
9 "//base",
10 "//platform",
11 "//sample:hello",
12 ]
13}
btolschb4893e62018-05-28 22:03:07 -070014
mark a. foltzc28ca402018-07-19 16:11:32 -070015executable("unittests") {
16 testonly = true
btolschb4893e62018-05-28 22:03:07 -070017 deps = [
18 "//base:base_unittests",
mark a. foltzc28ca402018-07-19 16:11:32 -070019 "//sample:hello_unittests",
btolsch762c4da2018-03-19 12:27:00 -070020 ]
21}