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") | |
7 | 6 |
8 group("mojo") { | 7 group("mojo") { |
9 # Meta-target, don't link into production code. | 8 # Meta-target, don't link into production code. |
10 testonly = true | 9 testonly = true |
11 declare_args() { | 10 declare_args() { |
12 mojo_use_go = false | 11 mojo_use_go = false |
13 } | 12 } |
14 deps = [ | 13 deps = [ |
15 ":tests", | 14 ":tests", |
16 "//mojo/apps/js:mojo_js_content_handler", | 15 "//mojo/apps/js:mojo_js_content_handler", |
17 "//mojo/apps/js:mojo_js_standalone", | 16 "//mojo/apps/js:mojo_js_standalone", |
18 "//mojo/common", | 17 "//mojo/common", |
19 "//mojo/examples", | 18 "//mojo/examples", |
20 "//mojo/public", | 19 "//mojo/public", |
21 "//mojo/services", | 20 "//mojo/services", |
| 21 "//mojo/shell:mojo_shell", |
22 "//mojo/tools/package_manager", | 22 "//mojo/tools/package_manager", |
23 ] | 23 ] |
24 | 24 |
25 if (use_prebuilt_mojo_shell) { | |
26 deps += [ "//mojo/public/tools:copy_mojo_shell" ] | |
27 } else { | |
28 deps += [ "//mojo/shell:mojo_shell" ] | |
29 } | |
30 | |
31 if (is_android) { | 25 if (is_android) { |
32 deps += [ | 26 deps += [ |
33 "//mojo/android", | 27 "//mojo/android", |
34 ] | 28 ] |
35 } | 29 } |
36 | 30 |
37 if (is_linux) { | 31 if (is_linux) { |
38 deps += [ | 32 deps += [ |
39 "//mojo/python", | 33 "//mojo/python", |
40 ] | 34 ] |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 sources = [ | 78 sources = [ |
85 "android/javatests/src/org/chromium/mojo/MojoTestCase.java", | 79 "android/javatests/src/org/chromium/mojo/MojoTestCase.java", |
86 "android/javatests/src/org/chromium/mojo/bindings/ValidationTestUtil.java"
, | 80 "android/javatests/src/org/chromium/mojo/bindings/ValidationTestUtil.java"
, |
87 "android/system/src/org/chromium/mojo/system/impl/CoreImpl.java", | 81 "android/system/src/org/chromium/mojo/system/impl/CoreImpl.java", |
88 "services/native_viewport/android/src/org/chromium/mojo/PlatformViewportAn
droid.java", | 82 "services/native_viewport/android/src/org/chromium/mojo/PlatformViewportAn
droid.java", |
89 ] | 83 ] |
90 | 84 |
91 jni_package = "mojo" | 85 jni_package = "mojo" |
92 } | 86 } |
93 } | 87 } |
OLD | NEW |