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 group("mojo") { | 7 group("mojo") { |
8 # Meta-target, don't link into production code. | 8 # Meta-target, don't link into production code. |
9 testonly = true | 9 testonly = true |
10 deps = [ | 10 deps = [ |
11 ":tests", | 11 ":tests", |
12 "//mojo/apps/js:mojo_js", | 12 "//mojo/apps/js:mojo_js", |
13 "//mojo/common", | 13 "//mojo/common", |
14 "//mojo/examples", | 14 "//mojo/examples", |
15 "//mojo/public", | 15 "//mojo/public", |
16 "//mojo/services", | 16 "//mojo/services", |
17 "//mojo/shell:mojo_shell", | 17 "//mojo/shell:mojo_shell", |
| 18 "//mojo/tools/package_manager", |
18 ] | 19 ] |
19 | 20 |
20 if (is_linux) { | 21 if (is_linux) { |
21 deps += [ | 22 deps += [ |
22 "//mojo/python", | 23 "//mojo/python", |
23 ] | 24 ] |
24 } | 25 } |
25 } | 26 } |
26 | 27 |
27 group("tests") { | 28 group("tests") { |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 sources = [ | 62 sources = [ |
62 "android/javatests/src/org/chromium/mojo/MojoTestCase.java", | 63 "android/javatests/src/org/chromium/mojo/MojoTestCase.java", |
63 "android/javatests/src/org/chromium/mojo/bindings/ValidationTestUtil.java"
, | 64 "android/javatests/src/org/chromium/mojo/bindings/ValidationTestUtil.java"
, |
64 "android/system/src/org/chromium/mojo/system/impl/CoreImpl.java", | 65 "android/system/src/org/chromium/mojo/system/impl/CoreImpl.java", |
65 "services/native_viewport/android/src/org/chromium/mojo/PlatformViewportAn
droid.java", | 66 "services/native_viewport/android/src/org/chromium/mojo/PlatformViewportAn
droid.java", |
66 ] | 67 ] |
67 | 68 |
68 jni_package = "mojo" | 69 jni_package = "mojo" |
69 } | 70 } |
70 } | 71 } |
OLD | NEW |