| 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. |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 "//mojo/public/c/system/tests:perftests", | 66 "//mojo/public/c/system/tests:perftests", |
| 67 "//mojo/public/cpp/application/tests:mojo_public_application_unittests", | 67 "//mojo/public/cpp/application/tests:mojo_public_application_unittests", |
| 68 "//mojo/public/cpp/bindings/tests:mojo_public_bindings_unittests", | 68 "//mojo/public/cpp/bindings/tests:mojo_public_bindings_unittests", |
| 69 "//mojo/public/cpp/environment/tests:mojo_public_environment_unittests", | 69 "//mojo/public/cpp/environment/tests:mojo_public_environment_unittests", |
| 70 "//mojo/public/cpp/system/tests:mojo_public_system_unittests", | 70 "//mojo/public/cpp/system/tests:mojo_public_system_unittests", |
| 71 "//mojo/public/cpp/utility/tests:mojo_public_utility_unittests", | 71 "//mojo/public/cpp/utility/tests:mojo_public_utility_unittests", |
| 72 "//mojo/services/network:apptests", | 72 "//mojo/services/network:apptests", |
| 73 "//mojo/shell:external_application_unittests", | 73 "//mojo/shell:external_application_unittests", |
| 74 "//mojo/shell:mojo_shell_tests", | 74 "//mojo/shell:mojo_shell_tests", |
| 75 "//mojo/tools:message_generator", | 75 "//mojo/tools:message_generator", |
| 76 "//services/clipboard:clipboard_unittests", | 76 "//services/clipboard:apptests", |
| 77 "//services/js:js_services_unittests", | 77 "//services/js:js_services_unittests", |
| 78 "//services/js:js_apptests", | 78 "//services/js:js_apptests", |
| 79 ] | 79 ] |
| 80 | 80 |
| 81 if (is_android) { | 81 if (is_android) { |
| 82 deps += [ "//mojo/edk/system:mojo_system_unittests_apk" ] | 82 deps += [ "//mojo/edk/system:mojo_system_unittests_apk" ] |
| 83 } | 83 } |
| 84 | 84 |
| 85 if (use_aura) { | 85 if (use_aura) { |
| 86 deps += [ | 86 deps += [ |
| (...skipping 16 matching lines...) Expand all Loading... |
| 103 sources = [ | 103 sources = [ |
| 104 "android/javatests/src/org/chromium/mojo/MojoTestCase.java", | 104 "android/javatests/src/org/chromium/mojo/MojoTestCase.java", |
| 105 "android/javatests/src/org/chromium/mojo/bindings/ValidationTestUtil.java"
, | 105 "android/javatests/src/org/chromium/mojo/bindings/ValidationTestUtil.java"
, |
| 106 "android/system/src/org/chromium/mojo/system/impl/CoreImpl.java", | 106 "android/system/src/org/chromium/mojo/system/impl/CoreImpl.java", |
| 107 "../services/native_viewport/android/src/org/chromium/mojo/PlatformViewpor
tAndroid.java", | 107 "../services/native_viewport/android/src/org/chromium/mojo/PlatformViewpor
tAndroid.java", |
| 108 ] | 108 ] |
| 109 | 109 |
| 110 jni_package = "mojo" | 110 jni_package = "mojo" |
| 111 } | 111 } |
| 112 } | 112 } |
| OLD | NEW |