| 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 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 444 deps = [ | 444 deps = [ |
| 445 ":chrome_javatests", | 445 ":chrome_javatests", |
| 446 ":chrome_shell_test_java", | 446 ":chrome_shell_test_java", |
| 447 "//sync/android:sync_javatests", | 447 "//sync/android:sync_javatests", |
| 448 "//ui/android:ui_javatests", | 448 "//ui/android:ui_javatests", |
| 449 ] | 449 ] |
| 450 apk_name = "ChromeShellTest" | 450 apk_name = "ChromeShellTest" |
| 451 android_manifest = "shell/javatests/AndroidManifest.xml" | 451 android_manifest = "shell/javatests/AndroidManifest.xml" |
| 452 } | 452 } |
| 453 | 453 |
| 454 # GYP: //chrome/chrome_tests.gypi:chrome_shell_unit_tests | 454 # GYP: //chrome/chrome_tests.gypi:chrome_junit_tests |
| 455 java_binary("chrome_shell_unit_tests") { | 455 java_binary("chrome_junit_tests") { |
| 456 testonly = true | 456 testonly = true |
| 457 java_files = [ "android/junit/src/org/chromium/chrome/browser/omaha/ResponsePa
rserTest.java" ] | 457 java_files = [ "android/junit/src/org/chromium/chrome/browser/omaha/ResponsePa
rserTest.java" ] |
| 458 main_class = "org.chromium.testing.local.JunitTestMain" | 458 main_class = "org.chromium.testing.local.JunitTestMain" |
| 459 deps = [ | 459 deps = [ |
| 460 ":chrome_java", | 460 ":chrome_java", |
| 461 "//base:base_java", | 461 "//base:base_java", |
| 462 "//base:base_java_test_support", | 462 "//base:base_java_test_support", |
| 463 "//testing/android/junit:junit_test_support", | 463 "//testing/android/junit:junit_test_support", |
| 464 ] | 464 ] |
| 465 } | 465 } |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 518 ] | 518 ] |
| 519 } | 519 } |
| 520 | 520 |
| 521 zip("chrome_version_srcjar") { | 521 zip("chrome_version_srcjar") { |
| 522 inputs = [ | 522 inputs = [ |
| 523 chrome_version_java_file, | 523 chrome_version_java_file, |
| 524 ] | 524 ] |
| 525 output = "$target_gen_dir/$target_name.srcjar" | 525 output = "$target_gen_dir/$target_name.srcjar" |
| 526 base_dir = chrome_version_java_dir | 526 base_dir = chrome_version_java_dir |
| 527 } | 527 } |
| OLD | NEW |