| 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 754 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 765 ], | 765 ], |
| 766 'sources': [ | 766 'sources': [ |
| 767 'service/cloud_print/print_system_cups.cc', | 767 'service/cloud_print/print_system_cups.cc', |
| 768 ], | 768 ], |
| 769 }], | 769 }], |
| 770 ['OS!="win" and use_cups!=1', { | 770 ['OS!="win" and use_cups!=1', { |
| 771 'sources': [ | 771 'sources': [ |
| 772 'service/cloud_print/print_system_dummy.cc', | 772 'service/cloud_print/print_system_dummy.cc', |
| 773 ], | 773 ], |
| 774 }], | 774 }], |
| 775 ['OS!="win"', { |
| 776 'sources!': [ |
| 777 'service/service_utility_process_host.cc', |
| 778 'service/service_utility_process_host.h', |
| 779 ], |
| 780 }], |
| 775 ], | 781 ], |
| 776 }, | 782 }, |
| 777 ], | 783 ], |
| 778 }], | 784 }], |
| 779 ], # 'conditions' | 785 ], # 'conditions' |
| 780 } | 786 } |
| OLD | NEW |