| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 catalog_deps += [ "//services/ui/ws:tests_catalog" ] | 91 catalog_deps += [ "//services/ui/ws:tests_catalog" ] |
| 92 } | 92 } |
| 93 } | 93 } |
| 94 } | 94 } |
| 95 | 95 |
| 96 if (is_android) { | 96 if (is_android) { |
| 97 junit_binary("service_junit_tests") { | 97 junit_binary("service_junit_tests") { |
| 98 java_files = [ | 98 java_files = [ |
| 99 "device/generic_sensor/android/junit/src/org/chromium/device/sensors/Platf
ormSensorAndProviderTest.java", | 99 "device/generic_sensor/android/junit/src/org/chromium/device/sensors/Platf
ormSensorAndProviderTest.java", |
| 100 "device/nfc/android/junit/src/org/chromium/device/nfc/NFCTest.java", | 100 "device/nfc/android/junit/src/org/chromium/device/nfc/NFCTest.java", |
| 101 "shape_detection/android/junit/src/org/chromium/shape_detection/SharedBuff
erUtilsTest.java", | 101 "shape_detection/android/junit/src/org/chromium/shape_detection/BitmapUtil
sTest.java", |
| 102 ] | 102 ] |
| 103 deps = [ | 103 deps = [ |
| 104 "$google_play_services_package:google_play_services_base_java", | 104 "$google_play_services_package:google_play_services_base_java", |
| 105 "$google_play_services_package:google_play_services_basement_java", | 105 "$google_play_services_package:google_play_services_basement_java", |
| 106 "$google_play_services_package:google_play_services_vision_common_java", | 106 "$google_play_services_package:google_play_services_vision_common_java", |
| 107 "$google_play_services_package:google_play_services_vision_java", | 107 "$google_play_services_package:google_play_services_vision_java", |
| 108 "//base:base_java", | 108 "//base:base_java", |
| 109 "//base:base_java_test_support", | 109 "//base:base_java_test_support", |
| 110 "//device/generic_sensor:java", | 110 "//device/generic_sensor:java", |
| 111 "//device/generic_sensor/public/interfaces:interfaces_java", | 111 "//device/generic_sensor/public/interfaces:interfaces_java", |
| 112 "//mojo/public/java:bindings_java", | 112 "//mojo/public/java:bindings_java", |
| 113 "//mojo/public/java:system_java", | 113 "//mojo/public/java:system_java", |
| 114 "//services/device/nfc/android:java", | 114 "//services/device/nfc/android:java", |
| 115 "//services/device/public/interfaces:interfaces_java", | 115 "//services/device/public/interfaces:interfaces_java", |
| 116 "//services/device/public/java:nfc_java", | 116 "//services/device/public/java:nfc_java", |
| 117 "//services/shape_detection:shape_detection_java", | 117 "//services/shape_detection:shape_detection_java", |
| 118 "//skia/public/interfaces:interfaces_java", |
| 118 "//third_party/android_tools:android_support_annotations_java", | 119 "//third_party/android_tools:android_support_annotations_java", |
| 119 ] | 120 ] |
| 120 } | 121 } |
| 121 } | 122 } |
| OLD | NEW |