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

Unified Diff: chrome/chrome.gyp

Issue 2170123003: Fix typo in printing.gyp (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: \ Created 4 years, 5 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 | printing/printing.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/chrome.gyp
diff --git a/chrome/chrome.gyp b/chrome/chrome.gyp
index 8a05ac8567428d0bb4dcc1061e4e5770a26030c3..0c8a2ccb652e22eab648390d07b86e4865882a40 100644
--- a/chrome/chrome.gyp
+++ b/chrome/chrome.gyp
@@ -707,7 +707,7 @@
'..',
],
'conditions': [
- ['use_cups==1 and OS!="chromeos"', {
+ ['use_cups==1 and chromeos==0', {
'dependencies': [
'../printing/printing.gyp:cups',
],
@@ -715,17 +715,17 @@
'service/cloud_print/print_system_cups.cc',
],
}],
- ['OS!="win" and use_cups!=1', {
- 'sources': [
- 'service/cloud_print/print_system_dummy.cc',
- ],
- }],
['OS=="win"', {
'sources': [
'service/service_utility_process_host.cc',
'service/service_utility_process_host.h',
],
}],
+ ['use_cups!=1 or chromeos==1', {
+ 'sources': [
+ 'service/cloud_print/print_system_dummy.cc',
+ ],
+ }],
],
},
],
« no previous file with comments | « no previous file | printing/printing.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698