James Robinson | 3be077c | 2014-10-24 14:56:46 -0700 | [diff] [blame] | 1 | # 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 Bray | e5ac342 | 2014-12-16 13:27:24 -0800 | [diff] [blame] | 5 | # This target will be built if no target is specified when invoking ninja. |
| 6 | group("default") { |
James Robinson | 0c81e9b | 2014-10-03 15:32:44 -0700 | [diff] [blame] | 7 | testonly = true |
| 8 | |
| 9 | deps = [ |
Viet-Trung Luu | 36627ff | 2015-05-11 12:36:47 -0700 | [diff] [blame] | 10 | "//apps", |
Przemyslaw Pietrzkiewicz | 7c45108 | 2015-03-05 15:47:08 +0100 | [diff] [blame] | 11 | "//crypto:crypto_unittests", |
James Robinson | ce8c9dc | 2014-11-10 11:07:05 -0800 | [diff] [blame] | 12 | "//examples", |
Scott Violet | 32458ab | 2014-10-21 16:24:04 -0700 | [diff] [blame] | 13 | "//mojo", |
Alexandre Zani | fca71ca | 2015-04-01 07:57:24 -0700 | [diff] [blame] | 14 | "//mojom", |
James Robinson | ce8c9dc | 2014-11-10 11:07:05 -0800 | [diff] [blame] | 15 | "//services", |
James Robinson | b4b7af2 | 2014-12-05 11:21:01 -0800 | [diff] [blame] | 16 | "//shell", |
Elliot Glaysher | ba75a33 | 2015-01-15 12:16:19 -0800 | [diff] [blame] | 17 | "//ui/gfx:gfx_unittests", |
Elliot Glaysher | 1f3263d | 2015-01-21 15:12:58 -0800 | [diff] [blame] | 18 | "//ui/events:events_unittests", |
James Robinson | 0c81e9b | 2014-10-03 15:32:44 -0700 | [diff] [blame] | 19 | ] |
Scott Graham | 3582083 | 2014-11-04 11:04:01 -0800 | [diff] [blame] | 20 | |
Scott Graham | fa2b293 | 2014-11-03 19:42:39 -0800 | [diff] [blame] | 21 | if (!is_android && !is_win) { |
James Robinson | 3be077c | 2014-10-24 14:56:46 -0700 | [diff] [blame] | 22 | deps += [ "//tools/xdisplaycheck" ] |
| 23 | } |
Adam Barth | cc25898 | 2015-02-12 13:18:25 -0800 | [diff] [blame] | 24 | |
| 25 | if (!is_asan) { |
| 26 | deps += [ "//sky" ] |
| 27 | } |
James Robinson | 0c81e9b | 2014-10-03 15:32:44 -0700 | [diff] [blame] | 28 | } |
Nick Bray | e5ac342 | 2014-12-16 13:27:24 -0800 | [diff] [blame] | 29 | |
| 30 | # Deprecated name for the default build target. |
| 31 | group("root") { |
| 32 | testonly = true |
| 33 | deps = [ |
| 34 | ":default", |
| 35 | ] |
| 36 | } |