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("shell_apk_version.gni") | 6 import("shell_apk_version.gni") |
7 | 7 |
8 declare_args() { | 8 declare_args() { |
9 # The origin URL of the WebAPK. Used to generate a unique package name for | 9 # The origin URL of the WebAPK. Used to generate a unique package name for |
10 # WebAPK. Example: "foo.com" | 10 # WebAPK. Example: "foo.com" |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 } | 137 } |
138 | 138 |
139 junit_binary("webapk_shell_apk_junit_tests") { | 139 junit_binary("webapk_shell_apk_junit_tests") { |
140 java_files = [ | 140 java_files = [ |
141 "junit/src/org/chromium/webapk/shell_apk/HostBrowserClassLoaderTest.java", | 141 "junit/src/org/chromium/webapk/shell_apk/HostBrowserClassLoaderTest.java", |
142 "junit/src/org/chromium/webapk/shell_apk/MainActivityTest.java", | 142 "junit/src/org/chromium/webapk/shell_apk/MainActivityTest.java", |
143 ] | 143 ] |
144 deps = [ | 144 deps = [ |
145 ":webapk_java", | 145 ":webapk_java", |
146 "//chrome/android/webapk/libs/common:common_java", | 146 "//chrome/android/webapk/libs/common:common_java", |
| 147 "//chrome/android/webapk/test:junit_test_support", |
147 ] | 148 ] |
148 } | 149 } |
OLD | NEW |