| OLD | NEW |
| 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 Loading... |
| 224 testonly = true | 224 testonly = true |
| 225 deps = [ | 225 deps = [ |
| 226 ":ui_java", | 226 ":ui_java", |
| 227 "//base:base_java", | 227 "//base:base_java", |
| 228 "//base:base_java_test_support", | 228 "//base:base_java_test_support", |
| 229 "//third_party/android_support_test_runner:runner_java", | 229 "//third_party/android_support_test_runner:runner_java", |
| 230 ] | 230 ] |
| 231 } | 231 } |
| 232 | 232 |
| 233 junit_binary("ui_junit_tests") { | 233 junit_binary("ui_junit_tests") { |
| 234 java_files = [ "junit/src/org/chromium/ui/text/SpanApplierTest.java" ] | 234 java_files = [ |
| 235 "junit/src/org/chromium/ui/base/SelectFileDialogTest.java", |
| 236 "junit/src/org/chromium/ui/text/SpanApplierTest.java", |
| 237 ] |
| 235 deps = [ | 238 deps = [ |
| 239 ":ui_java", |
| 236 "//base:base_java", | 240 "//base:base_java", |
| 237 "//ui/android:ui_java", | |
| 238 ] | 241 ] |
| 239 } | 242 } |
| 240 | 243 |
| 241 test("ui_android_unittests") { | 244 test("ui_android_unittests") { |
| 242 sources = [ | 245 sources = [ |
| 243 "overscroll_refresh_unittest.cc", | 246 "overscroll_refresh_unittest.cc", |
| 244 "resources/resource_manager_impl_unittest.cc", | 247 "resources/resource_manager_impl_unittest.cc", |
| 245 "run_all_unittests.cc", | 248 "run_all_unittests.cc", |
| 246 ] | 249 ] |
| 247 deps = [ | 250 deps = [ |
| 248 ":android", | 251 ":android", |
| 249 ":java_enums_srcjar", | 252 ":java_enums_srcjar", |
| 250 ":ui_java", | 253 ":ui_java", |
| 251 "//base", | 254 "//base", |
| 252 "//base/test:test_support", | 255 "//base/test:test_support", |
| 253 "//cc", | 256 "//cc", |
| 254 "//cc:test_support", | 257 "//cc:test_support", |
| 255 "//skia", | 258 "//skia", |
| 256 "//testing/gmock", | 259 "//testing/gmock", |
| 257 "//testing/gtest", | 260 "//testing/gtest", |
| 258 "//ui/base", | 261 "//ui/base", |
| 259 "//ui/gfx", | 262 "//ui/gfx", |
| 260 "//ui/resources:ui_test_pak", | 263 "//ui/resources:ui_test_pak", |
| 261 ] | 264 ] |
| 262 } | 265 } |
| OLD | NEW |