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 727 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
738 'service/cloud_print/printer_job_queue_handler.h', | 738 'service/cloud_print/printer_job_queue_handler.h', |
739 'service/net/service_url_request_context_getter.cc', | 739 'service/net/service_url_request_context_getter.cc', |
740 'service/net/service_url_request_context_getter.h', | 740 'service/net/service_url_request_context_getter.h', |
741 'service/service_ipc_server.cc', | 741 'service/service_ipc_server.cc', |
742 'service/service_ipc_server.h', | 742 'service/service_ipc_server.h', |
743 'service/service_main.cc', | 743 'service/service_main.cc', |
744 'service/service_process.cc', | 744 'service/service_process.cc', |
745 'service/service_process.h', | 745 'service/service_process.h', |
746 'service/service_process_prefs.cc', | 746 'service/service_process_prefs.cc', |
747 'service/service_process_prefs.h', | 747 'service/service_process_prefs.h', |
748 'service/service_utility_process_host.cc', | |
749 'service/service_utility_process_host.h', | |
750 ], | 748 ], |
751 'include_dirs': [ | 749 'include_dirs': [ |
752 '..', | 750 '..', |
753 ], | 751 ], |
754 'conditions': [ | 752 'conditions': [ |
755 ['use_cups==1', { | 753 ['use_cups==1', { |
756 'dependencies': [ | 754 'dependencies': [ |
757 '../printing/printing.gyp:cups', | 755 '../printing/printing.gyp:cups', |
758 ], | 756 ], |
759 'sources': [ | 757 'sources': [ |
760 'service/cloud_print/print_system_cups.cc', | 758 'service/cloud_print/print_system_cups.cc', |
761 ], | 759 ], |
762 }], | 760 }], |
763 ['OS!="win" and use_cups!=1', { | 761 ['OS!="win" and use_cups!=1', { |
764 'sources': [ | 762 'sources': [ |
765 'service/cloud_print/print_system_dummy.cc', | 763 'service/cloud_print/print_system_dummy.cc', |
766 ], | 764 ], |
767 }], | 765 }], |
768 ['OS!="win"', { | 766 ['OS=="win"', { |
769 'sources!': [ | 767 'sources': [ |
770 'service/service_utility_process_host.cc', | 768 'service/service_utility_process_host.cc', |
771 'service/service_utility_process_host.h', | 769 'service/service_utility_process_host.h', |
772 ], | 770 ], |
| 771 'deps': [ |
| 772 # TODO(fdoray): Remove this once the PreRead field trial has |
| 773 # expired. crbug.com/577698 |
| 774 '../components/components.gyp:startup_metric_utils_common', |
| 775 ], |
773 }], | 776 }], |
774 ], | 777 ], |
775 }, | 778 }, |
776 ], | 779 ], |
777 }], | 780 }], |
778 ], # 'conditions' | 781 ], # 'conditions' |
779 } | 782 } |
OLD | NEW |