| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//services/catalog/public/tools/catalog.gni") | 6 import("//services/catalog/public/tools/catalog.gni") |
| 7 import("//services/service_manager/public/tools/test/service_test.gni") | 7 import("//services/service_manager/public/tools/test/service_test.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 | 9 |
| 10 # One Big Target for services to register their unit test sources. This exists | 10 # One Big Target for services to register their unit test sources. This exists |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 | 56 |
| 57 if (use_aura) { | 57 if (use_aura) { |
| 58 catalog_deps += [ "//services/ui/clipboard:tests_catalog" ] | 58 catalog_deps += [ "//services/ui/clipboard:tests_catalog" ] |
| 59 } | 59 } |
| 60 } | 60 } |
| 61 | 61 |
| 62 if (is_android) { | 62 if (is_android) { |
| 63 junit_binary("service_junit_tests") { | 63 junit_binary("service_junit_tests") { |
| 64 java_files = [ | 64 java_files = [ |
| 65 "device/generic_sensor/android/junit/src/org/chromium/device/sensors/Platf
ormSensorAndProviderTest.java", | 65 "device/generic_sensor/android/junit/src/org/chromium/device/sensors/Platf
ormSensorAndProviderTest.java", |
| 66 "device/nfc/android/junit/src/org/chromium/device/nfc/NFCTest.java", |
| 66 "shape_detection/android/junit/src/org/chromium/shape_detection/SharedBuff
erUtilsTest.java", | 67 "shape_detection/android/junit/src/org/chromium/shape_detection/SharedBuff
erUtilsTest.java", |
| 67 ] | 68 ] |
| 68 deps = [ | 69 deps = [ |
| 69 "$google_play_services_package:google_play_services_base_java", | 70 "$google_play_services_package:google_play_services_base_java", |
| 70 "$google_play_services_package:google_play_services_basement_java", | 71 "$google_play_services_package:google_play_services_basement_java", |
| 71 "$google_play_services_package:google_play_services_vision_java", | 72 "$google_play_services_package:google_play_services_vision_java", |
| 72 "//base:base_java", | 73 "//base:base_java", |
| 73 "//base:base_java_test_support", | 74 "//base:base_java_test_support", |
| 74 "//device/generic_sensor:java", | 75 "//device/generic_sensor:java", |
| 75 "//device/generic_sensor/public/interfaces:interfaces_java", | 76 "//device/generic_sensor/public/interfaces:interfaces_java", |
| 76 "//mojo/public/java:bindings_java", | 77 "//mojo/public/java:bindings_java", |
| 77 "//mojo/public/java:system_java", | 78 "//mojo/public/java:system_java", |
| 79 "//services/device/nfc/android:java", |
| 80 "//services/device/public/interfaces:interfaces_java", |
| 81 "//services/device/public/java:nfc_java", |
| 78 "//services/shape_detection:shape_detection_java", | 82 "//services/shape_detection:shape_detection_java", |
| 79 "//third_party/android_tools:android_support_annotations_java", | 83 "//third_party/android_tools:android_support_annotations_java", |
| 80 ] | 84 ] |
| 81 } | 85 } |
| 82 } | 86 } |
| OLD | NEW |