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

Side by Side Diff: tools/grit/grit_rule.gni

Issue 2175413004: Enable whitelist generation for all builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Enable whitelist generation for official builds. 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 | « tools/grit/grit/format/repack.py ('k') | tools/grit/repack.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 # Instantiate grit. This will produce a script target to run grit, and a 5 # Instantiate grit. This will produce a script target to run grit, and a
6 # static library that compiles the .cc files. 6 # static library that compiles the .cc files.
7 # 7 #
8 # Parameters 8 # Parameters
9 # 9 #
10 # source (required) 10 # source (required)
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 # grit_flags = [ "-E", "foo=bar" ] # Optional extra flags. 77 # grit_flags = [ "-E", "foo=bar" ] # Optional extra flags.
78 # # You can also put deps here if the grit source depends on generated 78 # # You can also put deps here if the grit source depends on generated
79 # # files. 79 # # files.
80 # } 80 # }
81 import("//build/config/chrome_build.gni") 81 import("//build/config/chrome_build.gni")
82 import("//build/config/crypto.gni") 82 import("//build/config/crypto.gni")
83 import("//build/config/features.gni") 83 import("//build/config/features.gni")
84 import("//build/config/ui.gni") 84 import("//build/config/ui.gni")
85 85
86 declare_args() { 86 declare_args() {
87 # Enables used resource whitelist generation. 87 # Enables used resource whitelist generation. Set for official builds only
88 enable_resource_whitelist_generation = false 88 # as a large amount of build output is generated.
89 enable_resource_whitelist_generation = is_official_build
Dirk Pranke 2016/07/30 00:14:51 This should default to (is_android && is_offical_b
estevenson 2016/08/02 14:52:54 Done.
90 if (!is_android && enable_resource_whitelist_generation) {
91 print(
92 "Warning: GN logic for resource whitelists is implemented only for Andro id")
93 }
Dirk Pranke 2016/07/30 00:14:51 Can you make this: assert(!enable_resource_whitel
estevenson 2016/08/02 14:52:54 Done.
89 } 94 }
90 95
91 grit_defines = [] 96 grit_defines = []
92 97
93 # Mac and iOS want Title Case strings. 98 # Mac and iOS want Title Case strings.
94 use_titlecase_in_grd_files = is_mac || is_ios 99 use_titlecase_in_grd_files = is_mac || is_ios
95 if (use_titlecase_in_grd_files) { 100 if (use_titlecase_in_grd_files) {
96 grit_defines += [ 101 grit_defines += [
97 "-D", 102 "-D",
98 "use_titlecase", 103 "use_titlecase",
(...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after
486 if (defined(invoker.configs)) { 491 if (defined(invoker.configs)) {
487 configs += invoker.configs 492 configs += invoker.configs
488 } 493 }
489 494
490 if (defined(invoker.visibility)) { 495 if (defined(invoker.visibility)) {
491 visibility = invoker.visibility 496 visibility = invoker.visibility
492 } 497 }
493 output_name = grit_output_name 498 output_name = grit_output_name
494 } 499 }
495 } 500 }
OLDNEW
« no previous file with comments | « tools/grit/grit/format/repack.py ('k') | tools/grit/repack.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698