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 668 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
679 'includes': [ | 679 'includes': [ |
680 'chrome_android.gypi', | 680 'chrome_android.gypi', |
681 ]}, # 'includes' | 681 ]}, # 'includes' |
682 ], # OS=="android" | 682 ], # OS=="android" |
683 ['configuration_policy==1 and OS!="android" and OS!="ios"', { | 683 ['configuration_policy==1 and OS!="android" and OS!="ios"', { |
684 'includes': [ 'policy.gypi', ], | 684 'includes': [ 'policy.gypi', ], |
685 }], | 685 }], |
686 ['enable_printing==1', { | 686 ['enable_printing==1', { |
687 'targets': [ | 687 'targets': [ |
688 { | 688 { |
| 689 # GN version: //chrome/service |
689 'target_name': 'service', | 690 'target_name': 'service', |
690 'type': 'static_library', | 691 'type': 'static_library', |
691 'variables': { 'enable_wexit_time_destructors': 1, }, | 692 'variables': { 'enable_wexit_time_destructors': 1, }, |
692 'dependencies': [ | 693 'dependencies': [ |
693 'chrome_resources.gyp:chrome_strings', | 694 'chrome_resources.gyp:chrome_strings', |
694 'common', | 695 'common', |
695 'common_net', | 696 'common_net', |
696 '../base/base.gyp:base', | 697 '../base/base.gyp:base', |
697 '../components/components.gyp:cloud_devices_common', | 698 '../components/components.gyp:cloud_devices_common', |
698 '../google_apis/google_apis.gyp:google_apis', | 699 '../google_apis/google_apis.gyp:google_apis', |
699 '../jingle/jingle.gyp:notifier', | 700 '../jingle/jingle.gyp:notifier', |
700 '../net/net.gyp:net', | 701 '../net/net.gyp:net', |
701 '../printing/printing.gyp:printing', | 702 '../printing/printing.gyp:printing', |
702 '../skia/skia.gyp:skia', | 703 '../skia/skia.gyp:skia', |
703 '../third_party/libjingle/libjingle.gyp:libjingle', | 704 '../third_party/libjingle/libjingle.gyp:libjingle', |
704 ], | 705 ], |
705 'sources': [ | 706 'sources': [ |
| 707 # Note: sources list duplicated in GN build. |
706 'service/cloud_print/cdd_conversion_win.cc', | 708 'service/cloud_print/cdd_conversion_win.cc', |
707 'service/cloud_print/cdd_conversion_win.h', | 709 'service/cloud_print/cdd_conversion_win.h', |
708 'service/cloud_print/cloud_print_auth.cc', | 710 'service/cloud_print/cloud_print_auth.cc', |
709 'service/cloud_print/cloud_print_auth.h', | 711 'service/cloud_print/cloud_print_auth.h', |
710 'service/cloud_print/cloud_print_connector.cc', | 712 'service/cloud_print/cloud_print_connector.cc', |
711 'service/cloud_print/cloud_print_connector.h', | 713 'service/cloud_print/cloud_print_connector.h', |
712 'service/cloud_print/cloud_print_proxy.cc', | 714 'service/cloud_print/cloud_print_proxy.cc', |
713 'service/cloud_print/cloud_print_proxy.h', | 715 'service/cloud_print/cloud_print_proxy.h', |
714 'service/cloud_print/cloud_print_proxy_backend.cc', | 716 'service/cloud_print/cloud_print_proxy_backend.cc', |
715 'service/cloud_print/cloud_print_proxy_backend.h', | 717 'service/cloud_print/cloud_print_proxy_backend.h', |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
760 'sources': [ | 762 'sources': [ |
761 'service/cloud_print/print_system_dummy.cc', | 763 'service/cloud_print/print_system_dummy.cc', |
762 ], | 764 ], |
763 }], | 765 }], |
764 ], | 766 ], |
765 }, | 767 }, |
766 ], | 768 ], |
767 }], | 769 }], |
768 ], # 'conditions' | 770 ], # 'conditions' |
769 } | 771 } |
OLD | NEW |