OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/android/rules.gni") | 5 import("//build/config/android/rules.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 assert(is_android) | 8 assert(is_android) |
9 | 9 |
10 component("android") { | 10 component("android") { |
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
228 } | 228 } |
229 | 229 |
230 # GYP: //ui/android/ui_android.gyp:ui_junit_tests | 230 # GYP: //ui/android/ui_android.gyp:ui_junit_tests |
231 junit_binary("ui_junit_tests") { | 231 junit_binary("ui_junit_tests") { |
232 java_files = [ | 232 java_files = [ |
233 "junit/src/org/chromium/ui/picker/DateDialogNormalizerTest.java", | 233 "junit/src/org/chromium/ui/picker/DateDialogNormalizerTest.java", |
234 "junit/src/org/chromium/ui/text/SpanApplierTest.java", | 234 "junit/src/org/chromium/ui/text/SpanApplierTest.java", |
235 ] | 235 ] |
236 deps = [ | 236 deps = [ |
237 "//base:base_java", | 237 "//base:base_java", |
| 238 "//base:base_junit_test_support", |
238 "//ui/android:ui_java", | 239 "//ui/android:ui_java", |
239 ] | 240 ] |
240 } | 241 } |
241 | 242 |
242 test("ui_android_unittests") { | 243 test("ui_android_unittests") { |
243 sources = [ | 244 sources = [ |
244 "overscroll_refresh_unittest.cc", | 245 "overscroll_refresh_unittest.cc", |
245 "resources/resource_manager_impl_unittest.cc", | 246 "resources/resource_manager_impl_unittest.cc", |
246 "run_all_unittests.cc", | 247 "run_all_unittests.cc", |
247 ] | 248 ] |
248 deps = [ | 249 deps = [ |
249 ":android", | 250 ":android", |
250 ":java_enums_srcjar", | 251 ":java_enums_srcjar", |
251 ":ui_java", | 252 ":ui_java", |
252 "//base", | 253 "//base", |
253 "//base/test:test_support", | 254 "//base/test:test_support", |
254 "//cc", | 255 "//cc", |
255 "//cc:test_support", | 256 "//cc:test_support", |
256 "//skia", | 257 "//skia", |
257 "//testing/gmock", | 258 "//testing/gmock", |
258 "//testing/gtest", | 259 "//testing/gtest", |
259 "//ui/base", | 260 "//ui/base", |
260 "//ui/gfx", | 261 "//ui/gfx", |
261 "//ui/resources:ui_test_pak", | 262 "//ui/resources:ui_test_pak", |
262 ] | 263 ] |
263 } | 264 } |
OLD | NEW |