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

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

Issue 2812773002: Refactor Clipboard Last Modified Time Storage (Closed)
Patch Set: load on startup Created 3 years, 8 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 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 deps = [ 242 deps = [
243 ":ui_java", 243 ":ui_java",
244 "//base:base_java", 244 "//base:base_java",
245 "//base:base_java_test_support", 245 "//base:base_java_test_support",
246 "//third_party/android_support_test_runner:runner_java", 246 "//third_party/android_support_test_runner:runner_java",
247 ] 247 ]
248 } 248 }
249 249
250 junit_binary("ui_junit_tests") { 250 junit_binary("ui_junit_tests") {
251 java_files = [ 251 java_files = [
252 "junit/src/org/chromium/ui/base/ClipboardTest.java",
253 "junit/src/org/chromium/ui/base/SelectFileDialogTest.java", 252 "junit/src/org/chromium/ui/base/SelectFileDialogTest.java",
254 "junit/src/org/chromium/ui/text/SpanApplierTest.java", 253 "junit/src/org/chromium/ui/text/SpanApplierTest.java",
255 ] 254 ]
256 deps = [ 255 deps = [
257 ":ui_java", 256 ":ui_java",
258 "//base:base_java", 257 "//base:base_java",
259 "//base:base_java_test_support",
260 ] 258 ]
261 } 259 }
262 260
263 test("ui_android_unittests") { 261 test("ui_android_unittests") {
264 sources = [ 262 sources = [
265 "overscroll_refresh_unittest.cc", 263 "overscroll_refresh_unittest.cc",
266 "resources/resource_manager_impl_unittest.cc", 264 "resources/resource_manager_impl_unittest.cc",
267 "run_all_unittests.cc", 265 "run_all_unittests.cc",
268 "view_android_unittests.cc", 266 "view_android_unittests.cc",
269 ] 267 ]
270 deps = [ 268 deps = [
271 ":android", 269 ":android",
272 ":java_enums_srcjar", 270 ":java_enums_srcjar",
273 ":ui_java", 271 ":ui_java",
274 "//base", 272 "//base",
275 "//base/test:test_support", 273 "//base/test:test_support",
276 "//cc", 274 "//cc",
277 "//cc:test_support", 275 "//cc:test_support",
278 "//skia", 276 "//skia",
279 "//testing/gmock", 277 "//testing/gmock",
280 "//testing/gtest", 278 "//testing/gtest",
281 "//ui/base", 279 "//ui/base",
282 "//ui/events", 280 "//ui/events",
283 "//ui/gfx", 281 "//ui/gfx",
284 "//ui/resources:ui_test_pak", 282 "//ui/resources:ui_test_pak",
285 ] 283 ]
286 } 284 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698