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_content_handler", | |
13 "//mojo/apps/js:mojo_js_standalone", | |
14 "//mojo/common", | 12 "//mojo/common", |
15 "//mojo/examples", | 13 "//mojo/examples", |
16 "//mojo/public", | 14 "//mojo/public", |
17 "//mojo/services", | 15 "//mojo/services", |
18 "//mojo/shell:mojo_shell", | 16 "//mojo/shell:mojo_shell", |
19 "//mojo/tools/package_manager", | 17 "//mojo/tools/package_manager", |
20 ] | 18 ] |
21 | 19 |
22 if (is_android) { | 20 if (is_android) { |
23 deps += [ | 21 deps += [ |
24 "//mojo/android", | 22 "//mojo/android", |
25 ] | 23 ] |
26 } | 24 } |
27 } | 25 } |
28 | 26 |
29 group("tests") { | 27 group("tests") { |
30 testonly = true | 28 testonly = true |
31 deps = [ | 29 deps = [ |
32 "//mojo/application_manager:mojo_application_manager_unittests", | 30 "//mojo/application_manager:mojo_application_manager_unittests", |
33 "//mojo/apps/js/test:mojo_apps_js_unittests", | |
34 "//mojo/bindings/js/tests:mojo_js_unittests", | 31 "//mojo/bindings/js/tests:mojo_js_unittests", |
35 "//mojo/common:mojo_common_unittests", | 32 "//mojo/common:mojo_common_unittests", |
36 "//mojo/converters/surfaces/tests:mojo_surfaces_lib_unittests", | 33 "//mojo/converters/surfaces/tests:mojo_surfaces_lib_unittests", |
37 "//mojo/edk/system:mojo_message_pipe_perftests", | 34 "//mojo/edk/system:mojo_message_pipe_perftests", |
38 "//mojo/edk/system:mojo_system_unittests", | 35 "//mojo/edk/system:mojo_system_unittests", |
39 "//mojo/public/c/system/tests:perftests", | 36 "//mojo/public/c/system/tests:perftests", |
40 "//mojo/public/cpp/application/tests:mojo_public_application_unittests", | 37 "//mojo/public/cpp/application/tests:mojo_public_application_unittests", |
41 "//mojo/public/cpp/bindings/tests:mojo_public_bindings_unittests", | 38 "//mojo/public/cpp/bindings/tests:mojo_public_bindings_unittests", |
42 "//mojo/public/cpp/environment/tests:mojo_public_environment_unittests", | 39 "//mojo/public/cpp/environment/tests:mojo_public_environment_unittests", |
43 "//mojo/public/cpp/system/tests:mojo_public_system_unittests", | 40 "//mojo/public/cpp/system/tests:mojo_public_system_unittests", |
(...skipping 18 matching lines...) Expand all Loading... |
62 sources = [ | 59 sources = [ |
63 "android/javatests/src/org/chromium/mojo/MojoTestCase.java", | 60 "android/javatests/src/org/chromium/mojo/MojoTestCase.java", |
64 "android/javatests/src/org/chromium/mojo/bindings/ValidationTestUtil.java"
, | 61 "android/javatests/src/org/chromium/mojo/bindings/ValidationTestUtil.java"
, |
65 "android/system/src/org/chromium/mojo/system/impl/CoreImpl.java", | 62 "android/system/src/org/chromium/mojo/system/impl/CoreImpl.java", |
66 "services/native_viewport/android/src/org/chromium/mojo/PlatformViewportAn
droid.java", | 63 "services/native_viewport/android/src/org/chromium/mojo/PlatformViewportAn
droid.java", |
67 ] | 64 ] |
68 | 65 |
69 jni_package = "mojo" | 66 jni_package = "mojo" |
70 } | 67 } |
71 } | 68 } |
OLD | NEW |