| 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 | 6 |
| 7 declare_args() { | 7 declare_args() { |
| 8 # The origin URL of the WebAPK. Used to generate a unique package name for | 8 # The origin URL of the WebAPK. Used to generate a unique package name for |
| 9 # WebAPK. Example: "foo.com" | 9 # WebAPK. Example: "foo.com" |
| 10 webapk_manifest_package_origin = "template" | 10 webapk_manifest_package_origin = "template" |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 ":webapk_java", | 124 ":webapk_java", |
| 125 "//base:base_java", | 125 "//base:base_java", |
| 126 "//base:base_java_test_support", | 126 "//base:base_java_test_support", |
| 127 "//chrome/android/webapk/libs/common:common_java", | 127 "//chrome/android/webapk/libs/common:common_java", |
| 128 "//content/public/test/android:content_java_test_support", | 128 "//content/public/test/android:content_java_test_support", |
| 129 ] | 129 ] |
| 130 srcjar_deps = [ "javatests/dex_optimizer:dex_optimizer_service_aidl" ] | 130 srcjar_deps = [ "javatests/dex_optimizer:dex_optimizer_service_aidl" ] |
| 131 } | 131 } |
| 132 | 132 |
| 133 junit_binary("webapk_shell_apk_junit_tests") { | 133 junit_binary("webapk_shell_apk_junit_tests") { |
| 134 java_files = [ "junit/src/org/chromium/webapk/shell_apk/HostBrowserClassLoader
Test.java" ] | 134 java_files = [ |
| 135 "junit/src/org/chromium/webapk/shell_apk/HostBrowserClassLoaderTest.java", |
| 136 "junit/src/org/chromium/webapk/shell_apk/MainActivityTest.java", |
| 137 ] |
| 135 deps = [ | 138 deps = [ |
| 136 ":webapk_java", | 139 ":webapk_java", |
| 137 "//chrome/android/webapk/libs/common:common_java", | 140 "//chrome/android/webapk/libs/common:common_java", |
| 138 ] | 141 ] |
| 139 } | 142 } |
| OLD | NEW |