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 deps = [ | 8 deps = [ |
9 ":tests", | 9 ":tests", |
10 "//mojo/common", | 10 "//mojo/common", |
11 "//mojo/examples", | 11 "//mojo/examples", |
12 "//mojo/public", | 12 "//mojo/public", |
13 "//mojo/services", | 13 "//mojo/services", |
14 "//mojo/shell:mojo_shell", | 14 "//mojo/shell:mojo_shell", |
15 ] | 15 ] |
16 | |
17 if (is_linux) { | |
18 deps += [ | |
19 "//mojo/python", | |
20 ] | |
21 } | |
22 } | 16 } |
23 | 17 |
24 group("tests") { | 18 group("tests") { |
25 deps = [ | 19 deps = [ |
26 "//mojo/application_manager:mojo_application_manager_unittests", | 20 "//mojo/application_manager:mojo_application_manager_unittests", |
27 "//mojo/apps/js/test:mojo_apps_js_unittests", | 21 "//mojo/apps/js/test:mojo_apps_js_unittests", |
28 "//mojo/common:mojo_common_unittests", | 22 "//mojo/common:mojo_common_unittests", |
29 "//mojo/public/cpp/application/tests:mojo_public_application_unittests", | 23 "//mojo/public/cpp/application/tests:mojo_public_application_unittests", |
30 "//mojo/public/cpp/bindings/tests:mojo_public_bindings_unittests", | 24 "//mojo/public/cpp/bindings/tests:mojo_public_bindings_unittests", |
31 "//mojo/public/cpp/environment/tests:mojo_public_environment_unittests", | 25 "//mojo/public/cpp/environment/tests:mojo_public_environment_unittests", |
(...skipping 20 matching lines...) Expand all Loading... |
52 generate_jni("jni_headers") { | 46 generate_jni("jni_headers") { |
53 sources = [ | 47 sources = [ |
54 "android/javatests/src/org/chromium/mojo/MojoTestCase.java", | 48 "android/javatests/src/org/chromium/mojo/MojoTestCase.java", |
55 "android/system/src/org/chromium/mojo/system/impl/CoreImpl.java", | 49 "android/system/src/org/chromium/mojo/system/impl/CoreImpl.java", |
56 "services/native_viewport/android/src/org/chromium/mojo/PlatformViewportAn
droid.java", | 50 "services/native_viewport/android/src/org/chromium/mojo/PlatformViewportAn
droid.java", |
57 ] | 51 ] |
58 | 52 |
59 jni_package = "mojo" | 53 jni_package = "mojo" |
60 } | 54 } |
61 } | 55 } |
OLD | NEW |