| Index: chrome/chrome.gyp
|
| diff --git a/chrome/chrome.gyp b/chrome/chrome.gyp
|
| index 0c8a2ccb652e22eab648390d07b86e4865882a40..8a05ac8567428d0bb4dcc1061e4e5770a26030c3 100644
|
| --- a/chrome/chrome.gyp
|
| +++ b/chrome/chrome.gyp
|
| @@ -707,12 +707,17 @@
|
| '..',
|
| ],
|
| 'conditions': [
|
| - ['use_cups==1 and chromeos==0', {
|
| + ['use_cups==1 and OS!="chromeos"', {
|
| 'dependencies': [
|
| '../printing/printing.gyp:cups',
|
| ],
|
| 'sources': [
|
| 'service/cloud_print/print_system_cups.cc',
|
| + ],
|
| + }],
|
| + ['OS!="win" and use_cups!=1', {
|
| + 'sources': [
|
| + 'service/cloud_print/print_system_dummy.cc',
|
| ],
|
| }],
|
| ['OS=="win"', {
|
| @@ -721,11 +726,6 @@
|
| 'service/service_utility_process_host.h',
|
| ],
|
| }],
|
| - ['use_cups!=1 or chromeos==1', {
|
| - 'sources': [
|
| - 'service/cloud_print/print_system_dummy.cc',
|
| - ],
|
| - }],
|
| ],
|
| },
|
| ],
|
|
|