blob: c6d97a515c331a76bd6c4f49c40512017176e836 [file] [log] [blame]
James Robinson3be077c2014-10-24 14:56:46 -07001# Copyright 2014 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
Nick Braye5ac3422014-12-16 13:27:24 -08005# This target will be built if no target is specified when invoking ninja.
6group("default") {
James Robinson0c81e9b2014-10-03 15:32:44 -07007 testonly = true
8
9 deps = [
Viet-Trung Luu36627ff2015-05-11 12:36:47 -070010 "//apps",
Przemyslaw Pietrzkiewicz7c451082015-03-05 15:47:08 +010011 "//crypto:crypto_unittests",
James Robinsonce8c9dc2014-11-10 11:07:05 -080012 "//examples",
Scott Violet32458ab2014-10-21 16:24:04 -070013 "//mojo",
Alexandre Zanifca71ca2015-04-01 07:57:24 -070014 "//mojom",
James Robinsonce8c9dc2014-11-10 11:07:05 -080015 "//services",
James Robinsonb4b7af22014-12-05 11:21:01 -080016 "//shell",
Elliot Glaysherba75a332015-01-15 12:16:19 -080017 "//ui/gfx:gfx_unittests",
Elliot Glaysher1f3263d2015-01-21 15:12:58 -080018 "//ui/events:events_unittests",
James Robinson0c81e9b2014-10-03 15:32:44 -070019 ]
Scott Graham35820832014-11-04 11:04:01 -080020
Scott Grahamfa2b2932014-11-03 19:42:39 -080021 if (!is_android && !is_win) {
James Robinson3be077c2014-10-24 14:56:46 -070022 deps += [ "//tools/xdisplaycheck" ]
23 }
Adam Barthcc258982015-02-12 13:18:25 -080024
25 if (!is_asan) {
26 deps += [ "//sky" ]
27 }
James Robinson0c81e9b2014-10-03 15:32:44 -070028}
Nick Braye5ac3422014-12-16 13:27:24 -080029
30# Deprecated name for the default build target.
31group("root") {
32 testonly = true
33 deps = [
34 ":default",
35 ]
36}