Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(316)

Side by Side Diff: chrome/android/BUILD.gn

Issue 736163002: Upstream SpanApplier.java and SpanApplierTest.java (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: minor tweaks to SpanApplier upstream Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/chrome_tests.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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("//chrome/version.gni") 7 import("//chrome/version.gni")
8 import("//third_party/icu/config.gni") 8 import("//third_party/icu/config.gni")
9 import("channel.gni") 9 import("channel.gni")
10 10
(...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after
417 DEPRECATED_java_in_dir = "shell/javatests/src" 417 DEPRECATED_java_in_dir = "shell/javatests/src"
418 } 418 }
419 419
420 # GYP: //chrome/chrome_tests.gypi:chrome_shell_test_apk 420 # GYP: //chrome/chrome_tests.gypi:chrome_shell_test_apk
421 android_apk("chrome_shell_test_apk") { 421 android_apk("chrome_shell_test_apk") {
422 testonly = true 422 testonly = true
423 deps = [ 423 deps = [
424 ":chrome_javatests", 424 ":chrome_javatests",
425 ":chrome_shell_test_java", 425 ":chrome_shell_test_java",
426 "//sync/android:sync_javatests", 426 "//sync/android:sync_javatests",
427 "//ui/android:ui_javatests",
427 ] 428 ]
428 apk_name = "ChromeShellTest" 429 apk_name = "ChromeShellTest"
429 android_manifest = "shell/javatests/AndroidManifest.xml" 430 android_manifest = "shell/javatests/AndroidManifest.xml"
430 } 431 }
431 432
432 # GYP: //chrome/chrome_tests.gypi:chrome_sync_shell_test_apk 433 # GYP: //chrome/chrome_tests.gypi:chrome_sync_shell_test_apk
433 android_apk("chrome_sync_shell_test_apk") { 434 android_apk("chrome_sync_shell_test_apk") {
434 testonly = true 435 testonly = true
435 deps = [ 436 deps = [
436 ":chrome_java", 437 ":chrome_java",
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
476 source = "java/ChromeVersionConstants.java.version" 477 source = "java/ChromeVersionConstants.java.version"
477 output = chrome_version_java_file 478 output = chrome_version_java_file
478 extra_args = ["-e", "CHANNEL=str.upper('$android_channel')"] 479 extra_args = ["-e", "CHANNEL=str.upper('$android_channel')"]
479 } 480 }
480 481
481 zip("chrome_version_srcjar") { 482 zip("chrome_version_srcjar") {
482 inputs = [ chrome_version_java_file ] 483 inputs = [ chrome_version_java_file ]
483 output = "$target_gen_dir/$target_name.srcjar" 484 output = "$target_gen_dir/$target_name.srcjar"
484 base_dir = chrome_version_java_dir 485 base_dir = chrome_version_java_dir
485 } 486 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698