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", | |
239 "//ui/android:ui_java", | 238 "//ui/android:ui_java", |
240 ] | 239 ] |
241 } | 240 } |
242 | 241 |
243 test("ui_android_unittests") { | 242 test("ui_android_unittests") { |
244 sources = [ | 243 sources = [ |
245 "overscroll_refresh_unittest.cc", | 244 "overscroll_refresh_unittest.cc", |
246 "resources/resource_manager_impl_unittest.cc", | 245 "resources/resource_manager_impl_unittest.cc", |
247 "run_all_unittests.cc", | 246 "run_all_unittests.cc", |
248 ] | 247 ] |
249 deps = [ | 248 deps = [ |
250 ":android", | 249 ":android", |
251 ":java_enums_srcjar", | 250 ":java_enums_srcjar", |
252 ":ui_java", | 251 ":ui_java", |
253 "//base", | 252 "//base", |
254 "//base/test:test_support", | 253 "//base/test:test_support", |
255 "//cc", | 254 "//cc", |
256 "//cc:test_support", | 255 "//cc:test_support", |
257 "//skia", | 256 "//skia", |
258 "//testing/gmock", | 257 "//testing/gmock", |
259 "//testing/gtest", | 258 "//testing/gtest", |
260 "//ui/base", | 259 "//ui/base", |
261 "//ui/gfx", | 260 "//ui/gfx", |
262 "//ui/resources:ui_test_pak", | 261 "//ui/resources:ui_test_pak", |
263 ] | 262 ] |
264 } | 263 } |
OLD | NEW |