Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(86)

Side by Side Diff: ui/android/BUILD.gn

Issue 2195143002: [Android] Update all Robolectric tests to Robolectric 3.0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Convert newly added webapk_shell_apk_junit_tests to Robo 3.0 Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 } 224 }
225 225
226 # GYP: //ui/android/ui_android.gyp:ui_junit_tests 226 # GYP: //ui/android/ui_android.gyp:ui_junit_tests
227 junit_binary("ui_junit_tests") { 227 junit_binary("ui_junit_tests") {
228 java_files = [ 228 java_files = [
229 "junit/src/org/chromium/ui/picker/DateDialogNormalizerTest.java", 229 "junit/src/org/chromium/ui/picker/DateDialogNormalizerTest.java",
230 "junit/src/org/chromium/ui/text/SpanApplierTest.java", 230 "junit/src/org/chromium/ui/text/SpanApplierTest.java",
231 ] 231 ]
232 deps = [ 232 deps = [
233 "//base:base_java", 233 "//base:base_java",
234 "//base:base_junit_test_support",
235 "//ui/android:ui_java", 234 "//ui/android:ui_java",
236 ] 235 ]
237 } 236 }
238 237
239 test("ui_android_unittests") { 238 test("ui_android_unittests") {
240 sources = [ 239 sources = [
241 "overscroll_refresh_unittest.cc", 240 "overscroll_refresh_unittest.cc",
242 "resources/resource_manager_impl_unittest.cc", 241 "resources/resource_manager_impl_unittest.cc",
243 "run_all_unittests.cc", 242 "run_all_unittests.cc",
244 ] 243 ]
245 deps = [ 244 deps = [
246 ":android", 245 ":android",
247 ":java_enums_srcjar", 246 ":java_enums_srcjar",
248 ":ui_java", 247 ":ui_java",
249 "//base", 248 "//base",
250 "//base/test:test_support", 249 "//base/test:test_support",
251 "//cc", 250 "//cc",
252 "//cc:test_support", 251 "//cc:test_support",
253 "//skia", 252 "//skia",
254 "//testing/gmock", 253 "//testing/gmock",
255 "//testing/gtest", 254 "//testing/gtest",
256 "//ui/base", 255 "//ui/base",
257 "//ui/gfx", 256 "//ui/gfx",
258 "//ui/resources:ui_test_pak", 257 "//ui/resources:ui_test_pak",
259 ] 258 ]
260 } 259 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698