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

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

Issue 2583933003: Replace deprecated Android java test annotations (Closed)
Patch Set: Created 4 years 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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 srcjar_deps = [ ":java_enums_srcjar" ] 218 srcjar_deps = [ ":java_enums_srcjar" ]
219 } 219 }
220 220
221 android_library("ui_javatests") { 221 android_library("ui_javatests") {
222 java_files = [ "javatests/src/org/chromium/ui/resources/sprites/CrushedSpriteR esourceTest.java" ] 222 java_files = [ "javatests/src/org/chromium/ui/resources/sprites/CrushedSpriteR esourceTest.java" ]
223 testonly = true 223 testonly = true
224 deps = [ 224 deps = [
225 ":ui_java", 225 ":ui_java",
226 "//base:base_java", 226 "//base:base_java",
227 "//base:base_java_test_support", 227 "//base:base_java_test_support",
228 "//third_party/android_support_test_runner:runner_java",
228 ] 229 ]
229 } 230 }
230 231
231 junit_binary("ui_junit_tests") { 232 junit_binary("ui_junit_tests") {
232 java_files = [ "junit/src/org/chromium/ui/text/SpanApplierTest.java" ] 233 java_files = [ "junit/src/org/chromium/ui/text/SpanApplierTest.java" ]
233 deps = [ 234 deps = [
234 "//base:base_java", 235 "//base:base_java",
235 "//ui/android:ui_java", 236 "//ui/android:ui_java",
236 ] 237 ]
237 } 238 }
(...skipping 13 matching lines...) Expand all
251 "//cc", 252 "//cc",
252 "//cc:test_support", 253 "//cc:test_support",
253 "//skia", 254 "//skia",
254 "//testing/gmock", 255 "//testing/gmock",
255 "//testing/gtest", 256 "//testing/gtest",
256 "//ui/base", 257 "//ui/base",
257 "//ui/gfx", 258 "//ui/gfx",
258 "//ui/resources:ui_test_pak", 259 "//ui/resources:ui_test_pak",
259 ] 260 ]
260 } 261 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698