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

Unified Diff: build/common.gypi

Issue 22577010: Printing: Add a basic printing mode without print preview and cloud print. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/app/chrome_main_delegate.cc » ('j') | chrome/app/chrome_main_delegate.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index 3517971290c5d7dede2a53b18fd6c17911bfb8de..6a1b8a40e6cea8a1e5fe78d5c160cfc0cdb639ab 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -1584,7 +1584,7 @@
['enable_extensions==1', {
'grit_defines': ['-D', 'enable_extensions'],
}],
- ['enable_printing==1', {
+ ['enable_printing!=0', {
'grit_defines': ['-D', 'enable_printing'],
}],
['enable_themes==1', {
@@ -2261,6 +2261,9 @@
'defines': ['ENABLE_GOOGLE_NOW=1'],
}],
['enable_printing==1', {
+ 'defines': ['ENABLE_FULL_PRINTING=1', 'ENABLE_PRINTING=1'],
+ }],
+ ['enable_printing==2', {
cimamoglu1 2013/08/11 18:22:51 I believe an explanation above at the declaration
Lei Zhang 2013/08/12 06:06:15 Done.
'defines': ['ENABLE_PRINTING=1'],
}],
['enable_spellcheck==1', {
« no previous file with comments | « no previous file | chrome/app/chrome_main_delegate.cc » ('j') | chrome/app/chrome_main_delegate.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698