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 # TODO(beng): this meta target should probably move to the root dir's BUILD.gn. |
9 group("mojo") { | 9 group("mojo") { |
10 # Meta-target, don't link into production code. | 10 # Meta-target, don't link into production code. |
11 testonly = true | 11 testonly = true |
12 declare_args() { | 12 declare_args() { |
13 mojo_use_go = false | 13 mojo_use_go = false |
14 } | 14 } |
15 deps = [ | 15 deps = [ |
16 ":tests", | 16 ":tests", |
| 17 "//benchmarks", |
17 "//examples", | 18 "//examples", |
18 "//mojo/common", | 19 "//mojo/common", |
19 "//mojo/public", | 20 "//mojo/public", |
20 "//mojo/services", | 21 "//mojo/services", |
21 "//mojo/tools/package_manager", | 22 "//mojo/tools/package_manager", |
22 "//services", | 23 "//services", |
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" ] |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 sources = [ | 110 sources = [ |
110 "android/javatests/src/org/chromium/mojo/MojoTestCase.java", | 111 "android/javatests/src/org/chromium/mojo/MojoTestCase.java", |
111 "android/javatests/src/org/chromium/mojo/bindings/ValidationTestUtil.java"
, | 112 "android/javatests/src/org/chromium/mojo/bindings/ValidationTestUtil.java"
, |
112 "android/system/src/org/chromium/mojo/system/impl/CoreImpl.java", | 113 "android/system/src/org/chromium/mojo/system/impl/CoreImpl.java", |
113 "services/native_viewport/android/src/org/chromium/mojo/PlatformViewportAn
droid.java", | 114 "services/native_viewport/android/src/org/chromium/mojo/PlatformViewportAn
droid.java", |
114 ] | 115 ] |
115 | 116 |
116 jni_package = "mojo" | 117 jni_package = "mojo" |
117 } | 118 } |
118 } | 119 } |
OLD | NEW |