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 import("//mojo/public/mojo.gni") | 6 import("//mojo/public/mojo.gni") |
7 | 7 |
| 8 # TODO(beng): this meta target should probably move to the root dir's BUILD.gn. |
8 group("mojo") { | 9 group("mojo") { |
9 # Meta-target, don't link into production code. | 10 # Meta-target, don't link into production code. |
10 testonly = true | 11 testonly = true |
11 declare_args() { | 12 declare_args() { |
12 mojo_use_go = false | 13 mojo_use_go = false |
13 } | 14 } |
14 deps = [ | 15 deps = [ |
15 ":tests", | 16 ":tests", |
| 17 "//examples", |
16 "//mojo/apps/js:js_content_handler", | 18 "//mojo/apps/js:js_content_handler", |
17 "//mojo/apps/js:js_standalone", | 19 "//mojo/apps/js:js_standalone", |
18 "//mojo/common", | 20 "//mojo/common", |
19 "//mojo/examples", | |
20 "//mojo/public", | 21 "//mojo/public", |
21 "//mojo/services", | 22 "//mojo/services", |
22 "//mojo/tools/package_manager", | 23 "//mojo/tools/package_manager", |
23 ] | 24 ] |
24 | 25 |
25 if (use_prebuilt_mojo_shell) { | 26 if (use_prebuilt_mojo_shell) { |
26 deps += [ "//mojo/public/tools:copy_mojo_shell" ] | 27 deps += [ "//mojo/public/tools:copy_mojo_shell" ] |
27 } else { | 28 } else { |
28 deps += [ "//mojo/shell:mojo_shell" ] | 29 deps += [ "//mojo/shell:mojo_shell" ] |
29 } | 30 } |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 sources = [ | 86 sources = [ |
86 "android/javatests/src/org/chromium/mojo/MojoTestCase.java", | 87 "android/javatests/src/org/chromium/mojo/MojoTestCase.java", |
87 "android/javatests/src/org/chromium/mojo/bindings/ValidationTestUtil.java"
, | 88 "android/javatests/src/org/chromium/mojo/bindings/ValidationTestUtil.java"
, |
88 "android/system/src/org/chromium/mojo/system/impl/CoreImpl.java", | 89 "android/system/src/org/chromium/mojo/system/impl/CoreImpl.java", |
89 "services/native_viewport/android/src/org/chromium/mojo/PlatformViewportAn
droid.java", | 90 "services/native_viewport/android/src/org/chromium/mojo/PlatformViewportAn
droid.java", |
90 ] | 91 ] |
91 | 92 |
92 jni_package = "mojo" | 93 jni_package = "mojo" |
93 } | 94 } |
94 } | 95 } |
OLD | NEW |