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 22 matching lines...) Expand all Loading... |
33 ], | 33 ], |
34 'chromium_child_dependencies': [ | 34 'chromium_child_dependencies': [ |
35 'plugin', | 35 'plugin', |
36 'renderer', | 36 'renderer', |
37 'utility', | 37 'utility', |
38 '../content/content.gyp:content_gpu', | 38 '../content/content.gyp:content_gpu', |
39 '../content/content.gyp:content_ppapi_plugin', | 39 '../content/content.gyp:content_ppapi_plugin', |
40 '../third_party/WebKit/public/blink_devtools.gyp:blink_devtools_fronte
nd_resources', | 40 '../third_party/WebKit/public/blink_devtools.gyp:blink_devtools_fronte
nd_resources', |
41 ], | 41 ], |
42 }], | 42 }], |
43 ['enable_printing!=0', { | 43 ['enable_basic_printing==1 or enable_print_preview==1', { |
44 'chromium_browser_dependencies': [ | 44 'chromium_browser_dependencies': [ |
45 '../printing/printing.gyp:printing', | 45 '../printing/printing.gyp:printing', |
46 ], | 46 ], |
47 }], | 47 }], |
48 ['enable_printing==1', { | 48 ['enable_print_preview==1', { |
49 'chromium_browser_dependencies': [ | 49 'chromium_browser_dependencies': [ |
50 'service', | 50 'service', |
51 ], | 51 ], |
52 }], | 52 }], |
53 ['OS=="win"', { | 53 ['OS=="win"', { |
54 'platform_locale_settings_grd': | 54 'platform_locale_settings_grd': |
55 'app/resources/locale_settings_win.grd', | 55 'app/resources/locale_settings_win.grd', |
56 },], | 56 },], |
57 ['OS=="linux"', { | 57 ['OS=="linux"', { |
58 'conditions': [ | 58 'conditions': [ |
(...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
668 ]}, # 'includes' | 668 ]}, # 'includes' |
669 ], # OS=="android" | 669 ], # OS=="android" |
670 ['configuration_policy==1 and OS!="android" and OS!="ios"', { | 670 ['configuration_policy==1 and OS!="android" and OS!="ios"', { |
671 'includes': [ 'policy.gypi', ], | 671 'includes': [ 'policy.gypi', ], |
672 }], | 672 }], |
673 ['enable_extensions==1', { | 673 ['enable_extensions==1', { |
674 'includes': [ | 674 'includes': [ |
675 'chrome_browser_extensions.gypi', | 675 'chrome_browser_extensions.gypi', |
676 ], | 676 ], |
677 }], | 677 }], |
678 ['enable_printing==1', { | 678 ['enable_print_preview==1', { |
679 'targets': [ | 679 'targets': [ |
680 { | 680 { |
681 # GN version: //chrome/service | 681 # GN version: //chrome/service |
682 'target_name': 'service', | 682 'target_name': 'service', |
683 'type': 'static_library', | 683 'type': 'static_library', |
684 'variables': { 'enable_wexit_time_destructors': 1, }, | 684 'variables': { 'enable_wexit_time_destructors': 1, }, |
685 'dependencies': [ | 685 'dependencies': [ |
686 'chrome_resources.gyp:chrome_strings', | 686 'chrome_resources.gyp:chrome_strings', |
687 'common', | 687 'common', |
688 'common_net', | 688 'common_net', |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
760 'service/service_utility_process_host.cc', | 760 'service/service_utility_process_host.cc', |
761 'service/service_utility_process_host.h', | 761 'service/service_utility_process_host.h', |
762 ], | 762 ], |
763 }], | 763 }], |
764 ], | 764 ], |
765 }, | 765 }, |
766 ], | 766 ], |
767 }], | 767 }], |
768 ], # 'conditions' | 768 ], # 'conditions' |
769 } | 769 } |
OLD | NEW |