diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-21 21:47:22 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-21 21:47:22 +0000 |
commit | 893f78d19eb3f1087c013c8d4ee00df053945668 (patch) | |
tree | bd3063b970da3e1352f501949ca7ab272bd6859f /chrome/utility/BUILD.gn | |
parent | 78e910bc1f1c99a7d9d3a7671f4a54a52e3cbcf3 (diff) | |
download | chromium_src-893f78d19eb3f1087c013c8d4ee00df053945668.zip chromium_src-893f78d19eb3f1087c013c8d4ee00df053945668.tar.gz chromium_src-893f78d19eb3f1087c013c8d4ee00df053945668.tar.bz2 |
GN chrome/common build, rename enable_printing.
This adds the missing conditions to the chrome/common GN build file (previously
only the basic files were there). Some refactoring of the GYP file to make this
possible.
Renames the enable_printing flag to printing_mode since this is an integer
tri-state.
Minor improvements to chrome/renderer
R=jamesr@chromium.org
Review URL: https://codereview.chromium.org/400243003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@284508 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/utility/BUILD.gn')
-rw-r--r-- | chrome/utility/BUILD.gn | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/utility/BUILD.gn b/chrome/utility/BUILD.gn index 4c79e8c5..d70256c 100644 --- a/chrome/utility/BUILD.gn +++ b/chrome/utility/BUILD.gn @@ -77,7 +77,7 @@ static_library("utility") { } } - if (enable_printing != 1) { + if (printing_mode != 1) { sources -= [ "printing_handler.cc", "printing_handler.h", |