Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(499)

Side by Side Diff: BUILD.gn

Issue 1701193002: [fusl] Build example apptests under fusl (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | mojo/tools/data/fusl_apptests » ('j') | mojo/tools/data/fusl_apptests » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "//fusl", 25 "//fusl",
26 "//examples:portable_examples(//build/toolchain/fusl:fusl_$current_cpu)",
26 27
27 # We need this to run tests (especially on bots). 28 # We need this to run tests (especially on bots).
28 "//third_party/mesa:osmesa", 29 "//third_party/mesa:osmesa",
29 ] 30 ]
30 } 31 }
31 32
32 # TODO(cstout): fix sandbox build for fnl/musl 33 # TODO(cstout): fix sandbox build for fnl/musl
33 if (is_linux && !is_fnl) { 34 if (is_linux && !is_fnl) {
34 deps += [ 35 deps += [
35 "//sandbox/linux:sandbox", 36 "//sandbox/linux:sandbox",
(...skipping 27 matching lines...) Expand all
63 if (use_ozone) { 64 if (use_ozone) {
64 # This isn't in the default target as it's a bit wonky right now. 65 # This isn't in the default target as it's a bit wonky right now.
65 group("ozone_tests") { 66 group("ozone_tests") {
66 testonly = true 67 testonly = true
67 deps = [ 68 deps = [
68 "//ui/ozone:ozone_unittests", 69 "//ui/ozone:ozone_unittests",
69 "//ui/ozone/demo", 70 "//ui/ozone/demo",
70 ] 71 ]
71 } 72 }
72 } 73 }
OLDNEW
« no previous file with comments | « no previous file | mojo/tools/data/fusl_apptests » ('j') | mojo/tools/data/fusl_apptests » ('J')

Powered by Google App Engine
This is Rietveld 408576698