| 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 708 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 719 ['OS!="win" and use_cups!=1', { | 719 ['OS!="win" and use_cups!=1', { |
| 720 'sources': [ | 720 'sources': [ |
| 721 'service/cloud_print/print_system_dummy.cc', | 721 'service/cloud_print/print_system_dummy.cc', |
| 722 ], | 722 ], |
| 723 }], | 723 }], |
| 724 ['OS=="win"', { | 724 ['OS=="win"', { |
| 725 'sources': [ | 725 'sources': [ |
| 726 'service/service_utility_process_host.cc', | 726 'service/service_utility_process_host.cc', |
| 727 'service/service_utility_process_host.h', | 727 'service/service_utility_process_host.h', |
| 728 ], | 728 ], |
| 729 'deps': [ | |
| 730 # TODO(fdoray): Remove this once the PreRead field trial has | |
| 731 # expired. crbug.com/577698 | |
| 732 '../components/components.gyp:startup_metric_utils_win', | |
| 733 ], | |
| 734 }], | 729 }], |
| 735 ], | 730 ], |
| 736 }, | 731 }, |
| 737 ], | 732 ], |
| 738 }], | 733 }], |
| 739 ], # 'conditions' | 734 ], # 'conditions' |
| 740 } | 735 } |
| OLD | NEW |