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

Side by Side Diff: build/config/android/internal_rules.gni

Issue 2406093002: Fix monochrome not booting issue (Closed)
Patch Set: Created 4 years, 2 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 | « build/android/resource_sizes.py ('k') | build/config/android/rules.gni » ('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 # Do not add any imports to non-//build directories here. 5 # Do not add any imports to non-//build directories here.
6 # Some projects (e.g. V8) do not have non-build directories DEPS'ed in. 6 # Some projects (e.g. V8) do not have non-build directories DEPS'ed in.
7 import("//build_overrides/build.gni") 7 import("//build_overrides/build.gni")
8 import("//build/config/android/config.gni") 8 import("//build/config/android/config.gni")
9 import("//build/config/sanitizers/sanitizers.gni") 9 import("//build/config/sanitizers/sanitizers.gni")
10 10
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 "--package-name", 268 "--package-name",
269 invoker.custom_package, 269 invoker.custom_package,
270 ] 270 ]
271 } 271 }
272 if (defined(invoker.r_text)) { 272 if (defined(invoker.r_text)) {
273 args += [ 273 args += [
274 "--r-text", 274 "--r-text",
275 rebase_path(invoker.r_text, root_build_dir), 275 rebase_path(invoker.r_text, root_build_dir),
276 ] 276 ]
277 } 277 }
278 if (defined(invoker.is_locale_resource) && invoker.is_locale_resource) {
279 args += [ "--is-locale-resource" ]
280 }
281 if (defined(invoker.has_alternative_locale_resource) &&
282 invoker.has_alternative_locale_resource) {
283 args += [ "--has-alternative-locale-resource" ]
284 }
278 } 285 }
279 286
280 if (is_android_resources && defined(invoker.resource_dirs)) { 287 if (is_android_resources && defined(invoker.resource_dirs)) {
281 resource_dirs = rebase_path(invoker.resource_dirs, root_build_dir) 288 resource_dirs = rebase_path(invoker.resource_dirs, root_build_dir)
282 args += [ "--resource-dirs=$resource_dirs" ] 289 args += [ "--resource-dirs=$resource_dirs" ]
283 } 290 }
284 291
285 if (is_apk) { 292 if (is_apk) {
286 if (defined(invoker.shared_libraries_runtime_deps_file)) { 293 if (defined(invoker.shared_libraries_runtime_deps_file)) {
287 # Don't list shared_libraries_runtime_deps_file as an input in order to 294 # Don't list shared_libraries_runtime_deps_file as an input in order to
(...skipping 2415 matching lines...) Expand 10 before | Expand all | Expand 10 after
2703 rebase_path(root_build_dir, root_build_dir), 2710 rebase_path(root_build_dir, root_build_dir),
2704 "--packed-libraries-dir", 2711 "--packed-libraries-dir",
2705 rebase_path(_packed_libraries_dir, root_build_dir), 2712 rebase_path(_packed_libraries_dir, root_build_dir),
2706 "--libraries=${invoker.libraries_filearg}", 2713 "--libraries=${invoker.libraries_filearg}",
2707 "--filelistjson", 2714 "--filelistjson",
2708 rebase_path(invoker.file_list_json, root_build_dir), 2715 rebase_path(invoker.file_list_json, root_build_dir),
2709 ] 2716 ]
2710 } 2717 }
2711 } 2718 }
2712 } 2719 }
OLDNEW
« no previous file with comments | « build/android/resource_sizes.py ('k') | build/config/android/rules.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698