| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 # This target will be built if no target is specified when invoking ninja. | 7 # This target will be built if no target is specified when invoking ninja. |
| 8 group("default") { | 8 group("default") { |
| 9 testonly = true | 9 testonly = true |
| 10 | 10 |
| 11 deps = [ | 11 deps = [ |
| 12 "//apps", | 12 "//apps", |
| 13 "//base:base_unittests", |
| 13 "//benchmarks", | 14 "//benchmarks", |
| 14 "//crypto:crypto_unittests", | 15 "//crypto:crypto_unittests", |
| 15 "//examples", | 16 "//examples", |
| 16 "//mojo", | 17 "//mojo", |
| 17 "//mojom", | 18 "//mojom", |
| 18 "//services", | 19 "//services", |
| 19 "//shell", | 20 "//shell", |
| 20 ] | 21 ] |
| 21 | 22 |
| 22 # TODO(cstout): fix sandbox build for fnl/musl | 23 # TODO(cstout): fix sandbox build for fnl/musl |
| (...skipping 23 matching lines...) Expand all Loading... |
| 46 } | 47 } |
| 47 } | 48 } |
| 48 | 49 |
| 49 # Deprecated name for the default build target. | 50 # Deprecated name for the default build target. |
| 50 group("root") { | 51 group("root") { |
| 51 testonly = true | 52 testonly = true |
| 52 deps = [ | 53 deps = [ |
| 53 ":default", | 54 ":default", |
| 54 ] | 55 ] |
| 55 } | 56 } |
| OLD | NEW |