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

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

Issue 2583933003: Replace deprecated Android java test annotations (Closed)
Patch Set: Rebase again :( 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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 srcjar_deps = [ ":java_enums_srcjar" ] 224 srcjar_deps = [ ":java_enums_srcjar" ]
225 } 225 }
226 226
227 android_library("ui_javatests") { 227 android_library("ui_javatests") {
228 java_files = [ "javatests/src/org/chromium/ui/resources/sprites/CrushedSpriteR esourceTest.java" ] 228 java_files = [ "javatests/src/org/chromium/ui/resources/sprites/CrushedSpriteR esourceTest.java" ]
229 testonly = true 229 testonly = true
230 deps = [ 230 deps = [
231 ":ui_java", 231 ":ui_java",
232 "//base:base_java", 232 "//base:base_java",
233 "//base:base_java_test_support", 233 "//base:base_java_test_support",
234 "//third_party/android_support_test_runner:runner_java",
234 ] 235 ]
235 } 236 }
236 237
237 junit_binary("ui_junit_tests") { 238 junit_binary("ui_junit_tests") {
238 java_files = [ "junit/src/org/chromium/ui/text/SpanApplierTest.java" ] 239 java_files = [ "junit/src/org/chromium/ui/text/SpanApplierTest.java" ]
239 deps = [ 240 deps = [
240 "//base:base_java", 241 "//base:base_java",
241 "//ui/android:ui_java", 242 "//ui/android:ui_java",
242 ] 243 ]
243 } 244 }
(...skipping 13 matching lines...) Expand all
257 "//cc", 258 "//cc",
258 "//cc:test_support", 259 "//cc:test_support",
259 "//skia", 260 "//skia",
260 "//testing/gmock", 261 "//testing/gmock",
261 "//testing/gtest", 262 "//testing/gtest",
262 "//ui/base", 263 "//ui/base",
263 "//ui/gfx", 264 "//ui/gfx",
264 "//ui/resources:ui_test_pak", 265 "//ui/resources:ui_test_pak",
265 ] 266 ]
266 } 267 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698