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

Unified Diff: chrome/renderer/BUILD.gn

Issue 702603004: Renamed DISABLE_BASIC_PRINTING and ENABLE_FULL_PRINTING. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Tue Nov 4 17:22:50 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 side-by-side diff with in-line comments
Download patch
Index: chrome/renderer/BUILD.gn
diff --git a/chrome/renderer/BUILD.gn b/chrome/renderer/BUILD.gn
index 0c568b8936b234e4f60c5e4bba0dcb0c7b6488cb..506aacf6d62bb3ffdfae5e10497d64d93a96fa3f 100644
--- a/chrome/renderer/BUILD.gn
+++ b/chrome/renderer/BUILD.gn
@@ -134,7 +134,7 @@ static_library("renderer") {
deps += [ "//printing" ]
sources += rebase_path(gypi_values.chrome_renderer_printing_sources,
".", "..")
- if (printing_mode == 1) {
+ if (printing_mode > 1) {
sources += rebase_path(gypi_values.chrome_renderer_full_printing_sources,
".", "..")
}
@@ -181,7 +181,7 @@ source_set("test_support") {
"//testing/gtest",
]
- if (printing_mode == 1) {
+ if (printing_mode > 1) {
deps += [ "//chrome/service" ]
}
if (printing_mode != 0) {

Powered by Google App Engine
This is Rietveld 408576698