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", |
(...skipping 16 matching lines...) Expand all Loading... |
27 "//mojo/apps/js/test:mojo_apps_js_unittests", | 27 "//mojo/apps/js/test:mojo_apps_js_unittests", |
28 "//mojo/common:mojo_common_unittests", | 28 "//mojo/common:mojo_common_unittests", |
29 "//mojo/public/cpp/application/tests:mojo_public_application_unittests", | 29 "//mojo/public/cpp/application/tests:mojo_public_application_unittests", |
30 "//mojo/public/cpp/bindings/tests:mojo_public_bindings_unittests", | 30 "//mojo/public/cpp/bindings/tests:mojo_public_bindings_unittests", |
31 "//mojo/public/cpp/environment/tests:mojo_public_environment_unittests", | 31 "//mojo/public/cpp/environment/tests:mojo_public_environment_unittests", |
32 "//mojo/public/cpp/system/tests:mojo_public_system_unittests", | 32 "//mojo/public/cpp/system/tests:mojo_public_system_unittests", |
33 "//mojo/public/cpp/utility/tests:mojo_public_utility_unittests", | 33 "//mojo/public/cpp/utility/tests:mojo_public_utility_unittests", |
34 "//mojo/public/js/bindings/tests:mojo_js_unittests", | 34 "//mojo/public/js/bindings/tests:mojo_js_unittests", |
35 "//mojo/services/public/cpp/surfaces/tests:mojo_surfaces_lib_unittests", | 35 "//mojo/services/public/cpp/surfaces/tests:mojo_surfaces_lib_unittests", |
36 "//mojo/shell:mojo_shell_tests", | 36 "//mojo/shell:mojo_shell_tests", |
| 37 "//mojo/system:mojo_message_pipe_perftests", |
37 "//mojo/system:mojo_system_unittests", | 38 "//mojo/system:mojo_system_unittests", |
38 ] | 39 ] |
39 | 40 |
40 if (use_aura) { | 41 if (use_aura) { |
41 deps += [ | 42 deps += [ |
42 "//mojo/services/public/cpp/view_manager/tests:mojo_view_manager_lib_unitt
ests", | 43 "//mojo/services/public/cpp/view_manager/tests:mojo_view_manager_lib_unitt
ests", |
43 "//mojo/services/view_manager:mojo_view_manager_unittests", | 44 "//mojo/services/view_manager:mojo_view_manager_unittests", |
44 "//mojo/services/window_manager:mojo_core_window_manager_unittests", | 45 "//mojo/services/window_manager:mojo_core_window_manager_unittests", |
45 ] | 46 ] |
46 } | 47 } |
47 } | 48 } |
48 | 49 |
49 if (is_android) { | 50 if (is_android) { |
50 import("//build/config/android/rules.gni") | 51 import("//build/config/android/rules.gni") |
51 | 52 |
52 generate_jni("jni_headers") { | 53 generate_jni("jni_headers") { |
53 sources = [ | 54 sources = [ |
54 "android/javatests/src/org/chromium/mojo/MojoTestCase.java", | 55 "android/javatests/src/org/chromium/mojo/MojoTestCase.java", |
55 "android/system/src/org/chromium/mojo/system/impl/CoreImpl.java", | 56 "android/system/src/org/chromium/mojo/system/impl/CoreImpl.java", |
56 "services/native_viewport/android/src/org/chromium/mojo/PlatformViewportAn
droid.java", | 57 "services/native_viewport/android/src/org/chromium/mojo/PlatformViewportAn
droid.java", |
57 ] | 58 ] |
58 | 59 |
59 jni_package = "mojo" | 60 jni_package = "mojo" |
60 } | 61 } |
61 } | 62 } |
OLD | NEW |