| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/config.gni") | 5 import("//build/config/android/config.gni") |
| 6 import("//build/config/android/rules.gni") | 6 import("//build/config/android/rules.gni") |
| 7 import("//build/module_args/v8.gni") | 7 import("//build/module_args/v8.gni") |
| 8 import("//chrome/version.gni") | 8 import("//chrome/version.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//third_party/icu/config.gni") | 10 import("//third_party/icu/config.gni") |
| (...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 ] | 217 ] |
| 218 package_name = "org/chromium/chrome/browser" | 218 package_name = "org/chromium/chrome/browser" |
| 219 inputs = [ | 219 inputs = [ |
| 220 "../browser/android/resource_id.h", | 220 "../browser/android/resource_id.h", |
| 221 ] | 221 ] |
| 222 } | 222 } |
| 223 | 223 |
| 224 # GYP: //chrome/chrome_tests.gypi:chrome_junit_tests | 224 # GYP: //chrome/chrome_tests.gypi:chrome_junit_tests |
| 225 junit_binary("chrome_junit_tests") { | 225 junit_binary("chrome_junit_tests") { |
| 226 java_files = [ | 226 java_files = [ |
| 227 "junit/src/org/chromium/chrome/browser/childaccounts/ChildAccountServiceTest
.java", | |
| 228 "junit/src/org/chromium/chrome/browser/externalauth/ExternalAuthUtilsTest.ja
va", | 227 "junit/src/org/chromium/chrome/browser/externalauth/ExternalAuthUtilsTest.ja
va", |
| 229 "junit/src/org/chromium/chrome/browser/omaha/ResponseParserTest.java", | 228 "junit/src/org/chromium/chrome/browser/omaha/ResponseParserTest.java", |
| 230 "junit/src/org/chromium/chrome/browser/media/remote/AbstractMediaRouteContro
llerTest.java", | 229 "junit/src/org/chromium/chrome/browser/media/remote/AbstractMediaRouteContro
llerTest.java", |
| 231 "junit/src/org/chromium/chrome/browser/media/remote/MediaUrlResolverTest.jav
a", | 230 "junit/src/org/chromium/chrome/browser/media/remote/MediaUrlResolverTest.jav
a", |
| 232 "junit/src/org/chromium/chrome/browser/media/remote/RemoteVideoInfoTest.java
", | 231 "junit/src/org/chromium/chrome/browser/media/remote/RemoteVideoInfoTest.java
", |
| 233 "junit/src/org/chromium/chrome/browser/media/remote/TransportControlTest.jav
a", | 232 "junit/src/org/chromium/chrome/browser/media/remote/TransportControlTest.jav
a", |
| 234 ] | 233 ] |
| 235 deps = [ | 234 deps = [ |
| 236 ":chrome_java", | 235 ":chrome_java", |
| 237 "//base:base_java", | 236 "//base:base_java", |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 455 # TODO(GYP,cjhopman): Does this need version code/name? | 454 # TODO(GYP,cjhopman): Does this need version code/name? |
| 456 apk_name = "ChromePublicTest" | 455 apk_name = "ChromePublicTest" |
| 457 apk_under_test = ":chrome_public_apk" | 456 apk_under_test = ":chrome_public_apk" |
| 458 android_manifest = chrome_public_test_apk_manifest | 457 android_manifest = chrome_public_test_apk_manifest |
| 459 deps = [ | 458 deps = [ |
| 460 ":chrome_public_test_apk_manifest", | 459 ":chrome_public_test_apk_manifest", |
| 461 "//chrome/android:chrome_shared_test_java", | 460 "//chrome/android:chrome_shared_test_java", |
| 462 ] | 461 ] |
| 463 isolate_file = "../chrome_public_test_apk.isolate" | 462 isolate_file = "../chrome_public_test_apk.isolate" |
| 464 } | 463 } |
| OLD | NEW |