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

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: Add OfflinePageTestRunner.java to CL 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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 } 223 }
224 224
225 # GYP: //ui/android/ui_android.gyp:ui_junit_tests 225 # GYP: //ui/android/ui_android.gyp:ui_junit_tests
226 junit_binary("ui_junit_tests") { 226 junit_binary("ui_junit_tests") {
227 java_files = [ 227 java_files = [
228 "junit/src/org/chromium/ui/picker/DateDialogNormalizerTest.java", 228 "junit/src/org/chromium/ui/picker/DateDialogNormalizerTest.java",
229 "junit/src/org/chromium/ui/text/SpanApplierTest.java", 229 "junit/src/org/chromium/ui/text/SpanApplierTest.java",
230 ] 230 ]
231 deps = [ 231 deps = [
232 "//base:base_java", 232 "//base:base_java",
233 "//base:base_junit_test_support",
234 "//ui/android:ui_java", 233 "//ui/android:ui_java",
235 ] 234 ]
236 } 235 }
237 236
238 test("ui_android_unittests") { 237 test("ui_android_unittests") {
239 sources = [ 238 sources = [
240 "overscroll_refresh_unittest.cc", 239 "overscroll_refresh_unittest.cc",
241 "resources/resource_manager_impl_unittest.cc", 240 "resources/resource_manager_impl_unittest.cc",
242 "run_all_unittests.cc", 241 "run_all_unittests.cc",
243 ] 242 ]
244 deps = [ 243 deps = [
245 ":android", 244 ":android",
246 ":java_enums_srcjar", 245 ":java_enums_srcjar",
247 ":ui_java", 246 ":ui_java",
248 "//base", 247 "//base",
249 "//base/test:test_support", 248 "//base/test:test_support",
250 "//cc", 249 "//cc",
251 "//cc:test_support", 250 "//cc:test_support",
252 "//skia", 251 "//skia",
253 "//testing/gmock", 252 "//testing/gmock",
254 "//testing/gtest", 253 "//testing/gtest",
255 "//ui/base", 254 "//ui/base",
256 "//ui/gfx", 255 "//ui/gfx",
257 "//ui/resources:ui_test_pak", 256 "//ui/resources:ui_test_pak",
258 ] 257 ]
259 } 258 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698