diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-21 22:19:59 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-21 22:19:59 +0000 |
commit | 0eb35fce7fee6d75f4f259edeb87cf756f1f512a (patch) | |
tree | 5ceb98155e11388dc1b445f22b24dfe9b414cd41 /chrome/utility | |
parent | 84e5eb10fc96974f50d638c6ffc670718915ff4f (diff) | |
download | chromium_src-0eb35fce7fee6d75f4f259edeb87cf756f1f512a.zip chromium_src-0eb35fce7fee6d75f4f259edeb87cf756f1f512a.tar.gz chromium_src-0eb35fce7fee6d75f4f259edeb87cf756f1f512a.tar.bz2 |
Revert 284508 "GN chrome/common build, rename enable_printing."
> 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
TBR=brettw@chromium.org
Review URL: https://codereview.chromium.org/409543008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@284517 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/utility')
-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 d70256c..4c79e8c5 100644 --- a/chrome/utility/BUILD.gn +++ b/chrome/utility/BUILD.gn @@ -77,7 +77,7 @@ static_library("utility") { } } - if (printing_mode != 1) { + if (enable_printing != 1) { sources -= [ "printing_handler.cc", "printing_handler.h", |