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

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

Issue 2205143002: Removing unused string resources to clean up linting. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sad_tab_oom_message is needed for native code + remove another unused string Created 4 years, 4 months 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/android/java/strings/android_chrome_strings.grd » ('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("//build_overrides/v8.gni") 7 import("//build_overrides/v8.gni")
8 import("//chrome/android/chrome_public_apk_tmpl.gni") 8 import("//chrome/android/chrome_public_apk_tmpl.gni")
9 import("//chrome/common/features.gni") 9 import("//chrome/common/features.gni")
10 import("//chrome/version.gni") 10 import("//chrome/version.gni")
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 "values-vi/android_chrome_strings.xml", 138 "values-vi/android_chrome_strings.xml",
139 "values-zh-rCN/android_chrome_strings.xml", 139 "values-zh-rCN/android_chrome_strings.xml",
140 "values-zh/android_chrome_strings.xml", 140 "values-zh/android_chrome_strings.xml",
141 ] 141 ]
142 } 142 }
143 143
144 # GYP: //chrome/chrome.gyp:chrome_java 144 # GYP: //chrome/chrome.gyp:chrome_java
145 android_library("chrome_java") { 145 android_library("chrome_java") {
146 deps = [ 146 deps = [
147 ":chrome_public_apk_manifest", 147 ":chrome_public_apk_manifest",
148 ":chrome_public_apk_template_resources",
148 "//base:base_java", 149 "//base:base_java",
149 "//chrome/android/webapk/libs/client:client_java", 150 "//chrome/android/webapk/libs/client:client_java",
150 "//chrome/android/webapk/libs/common:common_java", 151 "//chrome/android/webapk/libs/common:common_java",
151 "//chrome/android/webapk/libs/runtime_library:webapk_service_aidl_java", 152 "//chrome/android/webapk/libs/runtime_library:webapk_service_aidl_java",
152 "//components/safe_json/android:safe_json_java", 153 "//components/safe_json/android:safe_json_java",
153 "//components/variations/android:variations_java", 154 "//components/variations/android:variations_java",
154 "//components/web_contents_delegate_android:web_contents_delegate_android_ja va", 155 "//components/web_contents_delegate_android:web_contents_delegate_android_ja va",
155 "//components/web_restrictions:web_restrictions_java", 156 "//components/web_restrictions:web_restrictions_java",
156 "//content/public/android:content_java", 157 "//content/public/android:content_java",
157 "//device/geolocation:geolocation_java", 158 "//device/geolocation:geolocation_java",
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after
542 } 543 }
543 } 544 }
544 545
545 chrome_public_apk_tmpl_shared("chrome_public_apk") { 546 chrome_public_apk_tmpl_shared("chrome_public_apk") {
546 android_manifest = get_target_outputs(":chrome_public_apk_manifest") 547 android_manifest = get_target_outputs(":chrome_public_apk_manifest")
547 android_manifest = android_manifest[1] 548 android_manifest = android_manifest[1]
548 android_manifest_dep = ":chrome_public_apk_manifest" 549 android_manifest_dep = ":chrome_public_apk_manifest"
549 apk_name = "ChromePublic" 550 apk_name = "ChromePublic"
550 shared_libraries = [ ":chrome" ] 551 shared_libraries = [ ":chrome" ]
551 552
552 deps = [ 553 deps = []
553 ":chrome_public_apk_template_resources",
554 ]
555 } 554 }
556 555
557 chrome_public_apk_tmpl_shared("chrome_sync_shell_apk") { 556 chrome_public_apk_tmpl_shared("chrome_sync_shell_apk") {
558 testonly = true 557 testonly = true
559 android_manifest = get_target_outputs(":chrome_sync_shell_apk_manifest") 558 android_manifest = get_target_outputs(":chrome_sync_shell_apk_manifest")
560 android_manifest = android_manifest[1] 559 android_manifest = android_manifest[1]
561 android_manifest_dep = ":chrome_sync_shell_apk_manifest" 560 android_manifest_dep = ":chrome_sync_shell_apk_manifest"
562 apk_name = "ChromeSyncShell" 561 apk_name = "ChromeSyncShell"
563 shared_libraries = [ ":chrome_sync_shell" ] 562 shared_libraries = [ ":chrome_sync_shell" ]
564 563
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
639 instrumentation_test_apk("chrome_sync_shell_test_apk") { 638 instrumentation_test_apk("chrome_sync_shell_test_apk") {
640 apk_name = "ChromeSyncShellTest" 639 apk_name = "ChromeSyncShellTest"
641 apk_under_test = ":chrome_sync_shell_apk" 640 apk_under_test = ":chrome_sync_shell_apk"
642 android_manifest = chrome_sync_shell_test_apk_manifest 641 android_manifest = chrome_sync_shell_test_apk_manifest
643 android_manifest_dep = ":chrome_sync_shell_test_apk_manifest" 642 android_manifest_dep = ":chrome_sync_shell_test_apk_manifest"
644 deps = [ 643 deps = [
645 ":chrome_sync_shell_test_apk_java", 644 ":chrome_sync_shell_test_apk_java",
646 ] 645 ]
647 proguard_enabled = !is_java_debug 646 proguard_enabled = !is_java_debug
648 } 647 }
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/strings/android_chrome_strings.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698