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

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

Issue 1085923002: Rename use_nss to use_nss_certs in gyp and grit. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: wrapping Created 5 years, 8 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/common.gypi ('k') | chrome/browser/resources/options/browser_options.html » ('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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 if (use_ash) { 139 if (use_ash) {
140 grit_defines += [ 140 grit_defines += [
141 "-D", 141 "-D",
142 "use_ash", 142 "use_ash",
143 ] 143 ]
144 } 144 }
145 145
146 if (use_nss_certs) { 146 if (use_nss_certs) {
147 grit_defines += [ 147 grit_defines += [
148 "-D", 148 "-D",
149 "use_nss", 149 "use_nss_certs",
150 ] 150 ]
151 } 151 }
152 152
153 if (use_ozone) { 153 if (use_ozone) {
154 grit_defines += [ 154 grit_defines += [
155 "-D", 155 "-D",
156 "use_ozone", 156 "use_ozone",
157 ] 157 ]
158 } 158 }
159 159
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
452 if (defined(invoker.configs)) { 452 if (defined(invoker.configs)) {
453 configs += invoker.configs 453 configs += invoker.configs
454 } 454 }
455 455
456 if (defined(invoker.visibility)) { 456 if (defined(invoker.visibility)) {
457 visibility = invoker.visibility 457 visibility = invoker.visibility
458 } 458 }
459 output_name = grit_output_name 459 output_name = grit_output_name
460 } 460 }
461 } 461 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | chrome/browser/resources/options/browser_options.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698