blob: 0982382d3bc69eaea007248729b92c8fa4a86546 [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 = [
James Robinsonce8c9dc2014-11-10 11:07:05 -080010 "//examples",
Scott Violet32458ab2014-10-21 16:24:04 -070011 "//mojo",
James Robinsonce8c9dc2014-11-10 11:07:05 -080012 "//services",
James Robinsonb4b7af22014-12-05 11:21:01 -080013 "//shell",
James Robinsonacdeda22014-12-05 13:35:52 -080014 "//sky",
Elliot Glaysherba75a332015-01-15 12:16:19 -080015 "//ui/gfx:gfx_unittests",
James Robinson0c81e9b2014-10-03 15:32:44 -070016 ]
Scott Graham35820832014-11-04 11:04:01 -080017
Scott Grahamfa2b2932014-11-03 19:42:39 -080018 if (!is_android && !is_win) {
James Robinson3be077c2014-10-24 14:56:46 -070019 deps += [ "//tools/xdisplaycheck" ]
20 }
James Robinson0c81e9b2014-10-03 15:32:44 -070021}
Nick Braye5ac3422014-12-16 13:27:24 -080022
23# Deprecated name for the default build target.
24group("root") {
25 testonly = true
26 deps = [
27 ":default",
28 ]
29}