OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 { | 4 { |
5 'variables': { | 5 'variables': { |
6 'chromium_code': 1, | 6 'chromium_code': 1, |
7 | 7 |
8 # Define the common dependencies that contain all the actual | 8 # Define the common dependencies that contain all the actual |
9 # Chromium functionality. This list gets pulled in below by | 9 # Chromium functionality. This list gets pulled in below by |
10 # the link of the actual chrome (or chromium) executable on | 10 # the link of the actual chrome (or chromium) executable on |
(...skipping 689 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
700 'service/service_main.cc', | 700 'service/service_main.cc', |
701 'service/service_process.cc', | 701 'service/service_process.cc', |
702 'service/service_process.h', | 702 'service/service_process.h', |
703 'service/service_process_prefs.cc', | 703 'service/service_process_prefs.cc', |
704 'service/service_process_prefs.h', | 704 'service/service_process_prefs.h', |
705 ], | 705 ], |
706 'include_dirs': [ | 706 'include_dirs': [ |
707 '..', | 707 '..', |
708 ], | 708 ], |
709 'conditions': [ | 709 'conditions': [ |
710 ['use_cups==1 and OS!="chromeos"', { | 710 ['use_cups==1 and chromeos==0', { |
711 'dependencies': [ | 711 'dependencies': [ |
712 '../printing/printing.gyp:cups', | 712 '../printing/printing.gyp:cups', |
713 ], | 713 ], |
714 'sources': [ | 714 'sources': [ |
715 'service/cloud_print/print_system_cups.cc', | 715 'service/cloud_print/print_system_cups.cc', |
716 ], | 716 ], |
717 }], | 717 }], |
718 ['OS!="win" and use_cups!=1', { | |
719 'sources': [ | |
720 'service/cloud_print/print_system_dummy.cc', | |
721 ], | |
722 }], | |
723 ['OS=="win"', { | 718 ['OS=="win"', { |
724 'sources': [ | 719 'sources': [ |
725 'service/service_utility_process_host.cc', | 720 'service/service_utility_process_host.cc', |
726 'service/service_utility_process_host.h', | 721 'service/service_utility_process_host.h', |
727 ], | 722 ], |
728 }], | 723 }], |
| 724 ['use_cups!=1 or chromeos==1', { |
| 725 'sources': [ |
| 726 'service/cloud_print/print_system_dummy.cc', |
| 727 ], |
| 728 }], |
729 ], | 729 ], |
730 }, | 730 }, |
731 ], | 731 ], |
732 }], | 732 }], |
733 ], # 'conditions' | 733 ], # 'conditions' |
734 } | 734 } |
OLD | NEW |