| 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("manifest_processor.gni") | 6 import("manifest_processor.gni") |
| 7 import("shell_apk_version.gni") | 7 import("shell_apk_version.gni") |
| 8 | 8 |
| 9 declare_args() { | 9 declare_args() { |
| 10 # The browser that the WebAPK will be bound to. | 10 # The browser that the WebAPK will be bound to. |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 "//content/public/test/android:content_java_test_support", | 234 "//content/public/test/android:content_java_test_support", |
| 235 "//third_party/android_support_test_runner:runner_java", | 235 "//third_party/android_support_test_runner:runner_java", |
| 236 ] | 236 ] |
| 237 srcjar_deps = [ "javatests/dex_optimizer:dex_optimizer_service_aidl" ] | 237 srcjar_deps = [ "javatests/dex_optimizer:dex_optimizer_service_aidl" ] |
| 238 } | 238 } |
| 239 | 239 |
| 240 junit_binary("webapk_shell_apk_junit_tests") { | 240 junit_binary("webapk_shell_apk_junit_tests") { |
| 241 java_files = [ | 241 java_files = [ |
| 242 "junit/src/org/chromium/webapk/shell_apk/HostBrowserClassLoaderTest.java", | 242 "junit/src/org/chromium/webapk/shell_apk/HostBrowserClassLoaderTest.java", |
| 243 "junit/src/org/chromium/webapk/shell_apk/MainActivityTest.java", | 243 "junit/src/org/chromium/webapk/shell_apk/MainActivityTest.java", |
| 244 "junit/src/org/chromium/webapk/shell_apk/WebApkUtilsTest.java", |
| 244 ] | 245 ] |
| 245 deps = [ | 246 deps = [ |
| 246 ":webapk_java", | 247 ":webapk_java", |
| 247 "//chrome/android/webapk/libs/common:common_java", | 248 "//chrome/android/webapk/libs/common:common_java", |
| 248 "//chrome/android/webapk/test:junit_test_support", | 249 "//chrome/android/webapk/test:junit_test_support", |
| 249 ] | 250 ] |
| 250 } | 251 } |
| OLD | NEW |