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

Side by Side Diff: chrome/BUILD.gn

Issue 702023002: Renamed enable_printing and printing_mode in *.gyp* and .*gn* files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Wed Nov 5 13:48:51 PST 2014 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 | « build/secondary/tools/grit/grit_rule.gni ('k') | chrome/browser/BUILD.gn » ('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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/locales.gni") 6 import("//build/config/locales.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//chrome/chrome_repack_locales.gni") 8 import("//chrome/chrome_repack_locales.gni")
9 import("//chrome/version.gni") 9 import("//chrome/version.gni")
10 10
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 "//chrome/browser", 211 "//chrome/browser",
212 "//chrome/common", 212 "//chrome/common",
213 "//sync", 213 "//sync",
214 ] 214 ]
215 if (!is_ios) { 215 if (!is_ios) {
216 deps += [ 216 deps += [
217 "//ppapi:ppapi_host", 217 "//ppapi:ppapi_host",
218 ] 218 ]
219 } 219 }
220 220
221 if (printing_mode != 0) { 221 if (enable_basic_printing || enable_print_preview) {
222 deps += [ "//printing" ] 222 deps += [ "//printing" ]
223 if (printing_mode == 1) { 223 if (enable_print_preview) {
224 deps += [ "//chrome/service" ] 224 deps += [ "//chrome/service" ]
225 } 225 }
226 } 226 }
227 } 227 }
228 228
229 # GYP version: chromium_child_dependencies variable in chrome.gyp 229 # GYP version: chromium_child_dependencies variable in chrome.gyp
230 group("child_dependencies") { 230 group("child_dependencies") {
231 deps = [ 231 deps = [
232 "//chrome/common", 232 "//chrome/common",
233 "//sync", 233 "//sync",
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
584 "//chrome/browser/ui", 584 "//chrome/browser/ui",
585 "//chrome/plugin", 585 "//chrome/plugin",
586 "//chrome/renderer", 586 "//chrome/renderer",
587 "//chrome/utility", 587 "//chrome/utility",
588 "//components/enhanced_bookmarks", 588 "//components/enhanced_bookmarks",
589 "//content/public/app:browser", 589 "//content/public/app:browser",
590 ] 590 ]
591 } 591 }
592 592
593 } 593 }
OLDNEW
« no previous file with comments | « build/secondary/tools/grit/grit_rule.gni ('k') | chrome/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698