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

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

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

Powered by Google App Engine
This is Rietveld 408576698