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

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

Issue 2766623003: Make Android Clipboard Keep Track of Last Modified Time (Closed)
Patch Set: ted's comments Created 3 years, 9 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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 deps = [ 234 deps = [
235 ":ui_java", 235 ":ui_java",
236 "//base:base_java", 236 "//base:base_java",
237 "//base:base_java_test_support", 237 "//base:base_java_test_support",
238 "//third_party/android_support_test_runner:runner_java", 238 "//third_party/android_support_test_runner:runner_java",
239 ] 239 ]
240 } 240 }
241 241
242 junit_binary("ui_junit_tests") { 242 junit_binary("ui_junit_tests") {
243 java_files = [ 243 java_files = [
244 "junit/src/org/chromium/ui/base/ClipboardTest.java",
244 "junit/src/org/chromium/ui/base/SelectFileDialogTest.java", 245 "junit/src/org/chromium/ui/base/SelectFileDialogTest.java",
245 "junit/src/org/chromium/ui/text/SpanApplierTest.java", 246 "junit/src/org/chromium/ui/text/SpanApplierTest.java",
246 ] 247 ]
247 deps = [ 248 deps = [
248 ":ui_java", 249 ":ui_java",
249 "//base:base_java", 250 "//base:base_java",
251 "//base:base_java_test_support",
250 ] 252 ]
251 } 253 }
252 254
253 test("ui_android_unittests") { 255 test("ui_android_unittests") {
254 sources = [ 256 sources = [
255 "overscroll_refresh_unittest.cc", 257 "overscroll_refresh_unittest.cc",
256 "resources/resource_manager_impl_unittest.cc", 258 "resources/resource_manager_impl_unittest.cc",
257 "run_all_unittests.cc", 259 "run_all_unittests.cc",
258 "view_android_unittests.cc", 260 "view_android_unittests.cc",
259 ] 261 ]
260 deps = [ 262 deps = [
261 ":android", 263 ":android",
262 ":java_enums_srcjar", 264 ":java_enums_srcjar",
263 ":ui_java", 265 ":ui_java",
264 "//base", 266 "//base",
265 "//base/test:test_support", 267 "//base/test:test_support",
266 "//cc", 268 "//cc",
267 "//cc:test_support", 269 "//cc:test_support",
268 "//skia", 270 "//skia",
269 "//testing/gmock", 271 "//testing/gmock",
270 "//testing/gtest", 272 "//testing/gtest",
271 "//ui/base", 273 "//ui/base",
272 "//ui/events", 274 "//ui/events",
273 "//ui/gfx", 275 "//ui/gfx",
274 "//ui/resources:ui_test_pak", 276 "//ui/resources:ui_test_pak",
275 ] 277 ]
276 } 278 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698