| 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 "//base:base_unittests", |
| 14 "//benchmarks", | 14 "//benchmarks", |
| 15 "//crypto:crypto_unittests", | 15 "//crypto:crypto_unittests", |
| 16 "//examples", | 16 "//examples", |
| 17 "//mojo", | 17 "//mojo", |
| 18 "//mojom", | 18 "//mojom", |
| 19 "//services", | 19 "//services", |
| 20 "//shell", | 20 "//shell", |
| 21 ] | 21 ] |
| 22 | 22 |
| 23 if (is_linux) { | 23 if (is_linux) { |
| 24 deps += [ | 24 deps += [ |
| 25 "//apps(//build/toolchain/fusl:fusl_${current_cpu})", |
| 26 "//examples(//build/toolchain/fusl:fusl_${current_cpu})", |
| 25 "//fusl", | 27 "//fusl", |
| 28 "//services(//build/toolchain/fusl:fusl_${current_cpu})", |
| 26 | 29 |
| 27 # We need this to run tests (especially on bots). | 30 # We need this to run tests (especially on bots). |
| 28 "//third_party/mesa:osmesa", | 31 "//third_party/mesa:osmesa", |
| 29 ] | 32 ] |
| 30 } | 33 } |
| 31 | 34 |
| 32 # TODO(cstout): fix sandbox build for fnl/musl | 35 # TODO(cstout): fix sandbox build for fnl/musl |
| 33 if (is_linux && !is_fnl) { | 36 if (is_linux && !is_fnl) { |
| 34 deps += [ | 37 deps += [ |
| 35 "//sandbox/linux:sandbox", | 38 "//sandbox/linux:sandbox", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 63 if (use_ozone) { | 66 if (use_ozone) { |
| 64 # This isn't in the default target as it's a bit wonky right now. | 67 # This isn't in the default target as it's a bit wonky right now. |
| 65 group("ozone_tests") { | 68 group("ozone_tests") { |
| 66 testonly = true | 69 testonly = true |
| 67 deps = [ | 70 deps = [ |
| 68 "//ui/ozone:ozone_unittests", | 71 "//ui/ozone:ozone_unittests", |
| 69 "//ui/ozone/demo", | 72 "//ui/ozone/demo", |
| 70 ] | 73 ] |
| 71 } | 74 } |
| 72 } | 75 } |
| OLD | NEW |