Roll src/third_party/WebKit 129741d:3ffd812 (svn 192915:192926)
[chromium-blink-merge.git] / chrome / chrome.gyp
blobe7e7afe8c45e23f8c5c0705365daf46b21c4c680
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
3 # found in the LICENSE file.
5   'variables': {
6     'chromium_code': 1,
8     # Define the common dependencies that contain all the actual
9     # Chromium functionality.  This list gets pulled in below by
10     # the link of the actual chrome (or chromium) executable on
11     # Linux or Mac, and into chrome.dll on Windows.
12     # NOTE: Most new includes should go in the OS!="ios" condition below.
13     #
14     # GN version is the group //chrome:browser_dependencies
15     'chromium_browser_dependencies': [
16       'common',
17       'browser',
18       '../sync/sync.gyp:sync',
19     ],
20     # GN version is the group //chrome:child_dependencies
21     'chromium_child_dependencies': [
22       'common',
23       '../sync/sync.gyp:sync',
24     ],
25     'allocator_target': '../base/allocator/allocator.gyp:allocator',
26     'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome',
27     'protoc_out_dir': '<(SHARED_INTERMEDIATE_DIR)/protoc_out',
28     'conditions': [
29       ['OS!="ios"', {
30         'chromium_browser_dependencies': [
31           'debugger',
32           '../ppapi/ppapi_internal.gyp:ppapi_host',
33         ],
34         'chromium_child_dependencies': [
35           'child',
36           'plugin',
37           'renderer',
38           'utility',
39           '../content/content.gyp:content_gpu',
40           '../content/content.gyp:content_ppapi_plugin',
41           '../third_party/WebKit/public/blink_devtools.gyp:blink_devtools_frontend_resources',
42         ],
43         'conditions': [
44           [ 'cld_version==0 or cld_version==2', {
45             'chromium_child_dependencies': [
46               # Use whatever CLD2 data access mode that the application
47               # embedder is using.
48               '<(DEPTH)/third_party/cld_2/cld_2.gyp:cld2_platform_impl', ],
49           }],
50           ['enable_plugins==1 and disable_nacl==0', {
51             'chromium_child_dependencies': [
52               '<(DEPTH)/components/nacl/renderer/plugin/plugin.gyp:nacl_trusted_plugin',
53             ],
54           }],
55           ['remoting==1', {
56             'chromium_child_dependencies': [
57               '../remoting/remoting.gyp:remoting_client_plugin',
58             ],
59           }],
60         ],
61       }],
62       ['enable_basic_printing==1 or enable_print_preview==1', {
63         'chromium_browser_dependencies': [
64           '../printing/printing.gyp:printing',
65         ],
66       }],
67       ['enable_print_preview==1', {
68         'chromium_browser_dependencies': [
69           'service',
70         ],
71       }],
72       ['OS=="win"', {
73         'platform_locale_settings_grd':
74             'app/resources/locale_settings_win.grd',
75       },],
76       ['OS=="linux"', {
77         'conditions': [
78           ['chromeos==1', {
79             'conditions': [
80               ['branding=="Chrome"', {
81                 'platform_locale_settings_grd':
82                     'app/resources/locale_settings_google_chromeos.grd',
83               }, {  # branding!=Chrome
84                 'platform_locale_settings_grd':
85                     'app/resources/locale_settings_chromiumos.grd',
86               }],
87             ]
88           }, {  # chromeos==0
89             'platform_locale_settings_grd':
90                 'app/resources/locale_settings_linux.grd',
91           }],
92         ],
93       },],
94       ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "linux"', {
95         'platform_locale_settings_grd':
96             'app/resources/locale_settings_linux.grd',
97       },],
98       ['OS=="mac"', {
99         'tweak_info_plist_path': '../build/mac/tweak_info_plist.py',
100         'platform_locale_settings_grd':
101             'app/resources/locale_settings_mac.grd',
102       }],  # OS=="mac"
103     ],  # conditions
104   },  # variables
105   'includes': [
106     # Place some targets in gypi files to reduce contention on this file.
107     # By using an include, we keep everything in a single xcodeproj file.
108     # Note on Win64 targets: targets that end with win64 be used
109     # on 64-bit Windows only. Targets that end with nacl_win64 should be used
110     # by Native Client only.
111     # NOTE: Most new includes should go in the OS!="ios" condition below.
112     '../build/chrome_settings.gypi',
113     '../build/util/version.gypi',
114     '../build/win_precompile.gypi',
115     'chrome_browser.gypi',
116     'chrome_browser_ui.gypi',
117     'chrome_common.gypi',
118     'chrome_installer_util.gypi',
119   ],
120   'conditions': [
121     ['OS!="ios"', {
122       'includes': [
123         '../apps/apps.gypi',
124         'app_installer/app_installer.gypi',
125         'chrome_child.gypi',
126         'chrome_debugger.gypi',
127         'chrome_dll.gypi',
128         'chrome_exe.gypi',
129         'chrome_installer.gypi',
130         'chrome_plugin.gypi',
131         'chrome_renderer.gypi',
132         'chrome_tests.gypi',
133         'chrome_tests_unit.gypi',
134         'chrome_utility.gypi',
135         'policy_templates.gypi',
136       ],
137       'targets': [
138         {
139           'target_name': 'default_extensions',
140           'type': 'none',
141           'conditions': [
142             ['OS=="win"', {
143               'copies': [
144                 {
145                   'destination': '<(PRODUCT_DIR)/extensions',
146                   'files': [
147                     'browser/extensions/default_extensions/external_extensions.json'
148                   ]
149                 }
150               ],
151             }]
152           ],
153         },
154       ],
155     }],  # OS!="ios"
156     ['OS=="mac"', {
157       'includes': [
158         'app_shim/app_shim.gypi',
159         'browser/apps/app_shim/browser_app_shim.gypi',
160       ],
161       'targets': [
162         {
163           'target_name': 'helper_app',
164           'type': 'executable',
165           'variables': { 'enable_wexit_time_destructors': 1, },
166           'product_name': '<(mac_product_name) Helper',
167           'mac_bundle': 1,
168           'dependencies': [
169             'chrome_dll',
170             'infoplist_strings_tool',
171           ],
172           'sources': [
173             # chrome_exe_main_mac.cc's main() is the entry point for
174             # the "chrome" (browser app) target.  All it does is jump
175             # to chrome_dll's ChromeMain.  This is appropriate for
176             # helper processes too, because the logic to discriminate
177             # between process types at run time is actually directed
178             # by the --type command line argument processed by
179             # ChromeMain.  Sharing chrome_exe_main_mac.cc with the
180             # browser app will suffice for now.
181             'app/chrome_exe_main_mac.cc',
182             'app/helper-Info.plist',
183           ],
184           # TODO(mark): Come up with a fancier way to do this.  It should only
185           # be necessary to list helper-Info.plist once, not the three times it
186           # is listed here.
187           'mac_bundle_resources!': [
188             'app/helper-Info.plist',
189           ],
190           # TODO(mark): For now, don't put any resources into this app.  Its
191           # resources directory will be a symbolic link to the browser app's
192           # resources directory.
193           'mac_bundle_resources/': [
194             ['exclude', '.*'],
195           ],
196           'xcode_settings': {
197             'CHROMIUM_BUNDLE_ID': '<(mac_bundle_id)',
198             'CHROMIUM_SHORT_NAME': '<(branding)',
199             'CHROMIUM_STRIP_SAVE_FILE': 'app/app.saves',
200             'INFOPLIST_FILE': 'app/helper-Info.plist',
201           },
202           'postbuilds': [
203             {
204               # The helper doesn't have real localizations, it just has
205               # empty .lproj directories, which is enough to convince Cocoa
206               # that anything running out of the helper .app supports those
207               # languages.
208               'postbuild_name': 'Make Empty Localizations',
209               'variables': {
210                 'locale_dirs': [
211                   '>!@(<(apply_locales_cmd) -d ZZLOCALE.lproj <(locales))',
212                 ],
213               },
214               'action': [
215                 'tools/build/mac/make_locale_dirs.sh',
216                 '<@(locale_dirs)',
217               ],
218             },
219             {
220               # The framework (chrome_dll) defines its load-time path
221               # (DYLIB_INSTALL_NAME_BASE) relative to the main executable
222               # (chrome).  A different relative path needs to be used in
223               # helper_app.
224               'postbuild_name': 'Fix Framework Link',
225               'action': [
226                 'install_name_tool',
227                 '-change',
228                 '@executable_path/../Versions/<(version_full)/<(mac_product_name) Framework.framework/<(mac_product_name) Framework',
229                 '@executable_path/../../../<(mac_product_name) Framework.framework/<(mac_product_name) Framework',
230                 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}'
231               ],
232             },
233             {
234               # Modify the Info.plist as needed.  The script explains why this
235               # is needed.  This is also done in the chrome and chrome_dll
236               # targets.  In this case, --breakpad=0, --keystone=0, and --scm=0
237               # are used because Breakpad, Keystone, and SCM keys are
238               # never placed into the helper.
239               'postbuild_name': 'Tweak Info.plist',
240               'action': ['<(tweak_info_plist_path)',
241                          '--breakpad=0',
242                          '--keystone=0',
243                          '--scm=0'],
244             },
245             {
246               # Make sure there isn't any Objective-C in the helper app's
247               # executable.
248               'postbuild_name': 'Verify No Objective-C',
249               'action': [
250                 '../build/mac/verify_no_objc.sh',
251               ],
252             },
253           ],
254           'conditions': [
255             ['mac_breakpad==1', {
256               'variables': {
257                 # A real .dSYM is needed for dump_syms to operate on.
258                 'mac_real_dsym': 1,
259               },
260               'xcode_settings': {
261                 # With mac_real_dsym set, strip_from_xcode won't be used.
262                 # Specify CHROMIUM_STRIP_SAVE_FILE directly to Xcode.
263                 'STRIPFLAGS': '-s $(CHROMIUM_STRIP_SAVE_FILE)',
264               },
265             }],
266             ['component=="shared_library"', {
267               'xcode_settings': {
268                 'LD_RUNPATH_SEARCH_PATHS': [
269                   # Get back from Chromium.app/Contents/Versions/V/
270                   #                                    Helper.app/Contents/MacOS
271                   '@loader_path/../../../../../../..',
272                 ],
273               },
274             }],
275           ],
276         },  # target helper_app
277         {
278           # A library containing the actual code for the app mode app, shared
279           # by unit tests.
280           # GN: //chrome/common:app_mode_app_support
281           'target_name': 'app_mode_app_support',
282           'type': 'static_library',
283           'variables': { 'enable_wexit_time_destructors': 1, },
284           'product_name': 'app_mode_app_support',
285           'dependencies': [
286             '../base/base.gyp:base',
287             'common_constants.gyp:common_constants',
288           ],
289           'sources': [
290             'common/mac/app_mode_chrome_locator.h',
291             'common/mac/app_mode_chrome_locator.mm',
292             'common/mac/app_mode_common.h',
293             'common/mac/app_mode_common.mm',
294           ],
295           'include_dirs': [
296             '..',
297           ],
298         },  # target app_mode_app_support
299         {
300           # Convenience target to build a disk image.
301           'target_name': 'build_app_dmg',
302           # Don't place this in the 'all' list; most won't want it.
303           # In GYP, booleans are 0/1, not True/False.
304           'suppress_wildcard': 1,
305           'type': 'none',
306           'dependencies': [
307             'chrome',
308           ],
309           'variables': {
310             'build_app_dmg_script_path': 'tools/build/mac/build_app_dmg',
311             'pkg_dmg_script_path': 'installer/mac/pkg-dmg',
313             'conditions': [
314               # This duplicates the output path from build_app_dmg.
315               ['branding=="Chrome"', {
316                 'dmg_name': 'GoogleChrome.dmg',
317               }, { # else: branding!="Chrome"
318                 'dmg_name': 'Chromium.dmg',
319               }],
320             ],
321           },
322           'actions': [
323             {
324               'inputs': [
325                 '<(build_app_dmg_script_path)',
326                 '<(pkg_dmg_script_path)',
327                 '<(PRODUCT_DIR)/<(mac_product_name).app',
328               ],
329               'outputs': [
330                 '<(PRODUCT_DIR)/<(dmg_name)',
331               ],
332               'action_name': 'build_app_dmg',
333               'action': ['<(build_app_dmg_script_path)', '<@(branding)'],
334             },
335           ],  # 'actions'
336         },
337         {
338           'target_name': 'infoplist_strings_tool',
339           'type': 'executable',
340           'variables': { 'enable_wexit_time_destructors': 1, },
341           'dependencies': [
342             'chrome_resources.gyp:chrome_strings',
343             '../base/base.gyp:base',
344             '../ui/base/ui_base.gyp:ui_base',
345             '../ui/gfx/gfx.gyp:gfx',
346             '../ui/gfx/gfx.gyp:gfx_geometry',
347           ],
348           'include_dirs': [
349             '<(grit_out_dir)',
350           ],
351           'sources': [
352             'tools/mac_helpers/infoplist_strings_util.mm',
353           ],
354         },
355       ],  # targets
356     }],  # OS=="mac"
357     ['OS=="linux"',
358       { 'targets': [
359         {
360           'target_name': 'linux_symbols',
361           'type': 'none',
362           'conditions': [
363             ['linux_dump_symbols==1', {
364               'actions': [
365                 {
366                   'action_name': 'dump_symbols',
367                   'inputs': [
368                     '<(DEPTH)/build/linux/dump_app_syms',
369                     '<(PRODUCT_DIR)/dump_syms',
370                     '<(PRODUCT_DIR)/chrome',
371                   ],
372                   'outputs': [
373                     '<(PRODUCT_DIR)/chrome.breakpad.<(target_arch)',
374                   ],
375                   'action': ['<(DEPTH)/build/linux/dump_app_syms',
376                              '<(PRODUCT_DIR)/dump_syms',
377                              '<(linux_strip_binary)',
378                              '<(PRODUCT_DIR)/chrome',
379                              '<@(_outputs)'],
380                   'message': 'Dumping breakpad symbols to <(_outputs)',
381                   'process_outputs_as_sources': 1,
382                 },
383               ],
384               'dependencies': [
385                 'chrome',
386                 '../breakpad/breakpad.gyp:dump_syms',
387               ],
388             }],
389           ],
390         },
391       ],
392     }],  # OS=="linux"
393     ['OS=="win"',
394       { 'targets': [
395         {
396           # For historical reasons, chrome/chrome.sln has been the entry point
397           # for new Chrome developers. To assist development, include several
398           # core unittests that are otherwise only accessible side-by-side with
399           # chrome via all/all.sln.
400           'target_name': 'test_targets',
401           'type': 'none',
402           'dependencies': [
403             '../base/base.gyp:base_unittests',
404             '../content/content_shell_and_tests.gyp:content_browsertests',
405             '../content/content_shell_and_tests.gyp:content_shell',
406             '../content/content_shell_and_tests.gyp:content_unittests',
407             '../net/net.gyp:net_unittests',
408             '../ui/base/ui_base_tests.gyp:ui_base_unittests',
409           ],
410         },
411         {
412           'target_name': 'chrome_version_resources',
413           'type': 'none',
414           'conditions': [
415             ['branding == "Chrome"', {
416               'variables': {
417                  'branding_path': 'app/theme/google_chrome/BRANDING',
418               },
419             }, { # else branding!="Chrome"
420               'variables': {
421                  'branding_path': 'app/theme/chromium/BRANDING',
422               },
423             }],
424           ],
425           'variables': {
426             'output_dir': 'chrome_version',
427             'template_input_path': 'app/chrome_version.rc.version',
428           },
429           'direct_dependent_settings': {
430             'include_dirs': [
431               '<(SHARED_INTERMEDIATE_DIR)/<(output_dir)',
432             ],
433           },
434           'sources': [
435             'app/chrome_exe.ver',
436             'app/chrome_dll.ver',
437             'app/nacl64_exe.ver',
438             'app/other.ver',
439           ],
440           'includes': [
441             'version_resource_rules.gypi',
442           ],
443         },
444         {
445           # GN version: //chrome:version_header
446           'target_name': 'chrome_version_header',
447           'type': 'none',
448           'hard_dependency': 1,
449           'actions': [
450             {
451               'action_name': 'version_header',
452               'variables': {
453                 'lastchange_path':
454                   '<(DEPTH)/build/util/LASTCHANGE',
455               },
456               'conditions': [
457                 ['branding == "Chrome"', {
458                   'variables': {
459                      'branding_path': 'app/theme/google_chrome/BRANDING',
460                   },
461                 }, { # else branding!="Chrome"
462                   'variables': {
463                      'branding_path': 'app/theme/chromium/BRANDING',
464                   },
465                 }],
466               ],
467               'inputs': [
468                 '<(version_path)',
469                 '<(branding_path)',
470                 '<(lastchange_path)',
471                 'version.h.in',
472               ],
473               'outputs': [
474                 '<(SHARED_INTERMEDIATE_DIR)/version.h',
475               ],
476               'action': [
477                 'python',
478                 '<(version_py_path)',
479                 '-f', '<(version_path)',
480                 '-f', '<(branding_path)',
481                 '-f', '<(lastchange_path)',
482                 'version.h.in',
483                 '<@(_outputs)',
484               ],
485               'message': 'Generating version header file: <@(_outputs)',
486             },
487           ],
488         },
489         {
490           'target_name': 'crash_service',
491           'type': 'executable',
492           'dependencies': [
493             'installer_util',
494             '../base/base.gyp:base',
495             '../chrome/common_constants.gyp:common_constants',
496             '../components/components.gyp:breakpad_crash_service',
497           ],
498           'include_dirs': [
499             '..',
500           ],
501           'sources': [
502             'tools/crash_service/main.cc',
503           ],
504           'msvs_settings': {
505             'VCLinkerTool': {
506               'SubSystem': '2',         # Set /SUBSYSTEM:WINDOWS
507             },
508           },
509         },
510         {
511           'target_name': 'sb_sigutil',
512           'type': 'executable',
513           'dependencies': [
514             '../base/base.gyp:base',
515             '../crypto/crypto.gyp:crypto',
516             'safe_browsing_proto',
517           ],
518           'sources': [
519             'common/safe_browsing/binary_feature_extractor.cc',
520             'common/safe_browsing/binary_feature_extractor.h',
521             'common/safe_browsing/binary_feature_extractor_win.cc',
522             'common/safe_browsing/pe_image_reader_win.cc',
523             'common/safe_browsing/pe_image_reader_win.h',
524             'tools/safe_browsing/sb_sigutil.cc',
525           ],
526         },
527       ],  # 'targets'
528       'includes': [
529         'app_shim/app_shim_win.gypi',
530         'chrome_watcher/chrome_watcher.gypi',
531         'chrome_process_finder.gypi',
532         'metro_utils.gypi',
533       ],
534     }],  # OS=="win"
535     ['OS=="win" and target_arch=="ia32"',
536       { 'targets': [
537         {
538           'target_name': 'chrome_user32_delay_imports',
539           'type': 'none',
540           'variables': {
541             'lib_dir': '<(INTERMEDIATE_DIR)',
542           },
543           'sources': [
544               'chrome.user32.delay.imports'
545           ],
546           'includes': [
547               '../build/win/importlibs/create_import_lib.gypi',
548           ],
549           'direct_dependent_settings': {
550             'msvs_settings': {
551               'VCLinkerTool': {
552                 'AdditionalLibraryDirectories': ['<(lib_dir)', ],
553                 'AdditionalDependencies': ['chrome.user32.delay.lib', ],
554               },
555             },
556           },
557         },
558         {
559           'target_name': 'crash_service_win64',
560           'type': 'executable',
561           'product_name': 'crash_service64',
562           'dependencies': [
563             'installer_util_nacl_win64',
564             '../base/base.gyp:base_static_win64',
565             '../chrome/common_constants.gyp:common_constants_win64',
566             '../components/components.gyp:breakpad_crash_service_win64',
567           ],
568           'include_dirs': [
569             '..',
570           ],
571           'sources': [
572             '../content/public/common/content_switches.cc',
573             'tools/crash_service/main.cc',
574           ],
575           'defines': [
576             'COMPILE_CONTENT_STATICALLY',
577           ],
578           'msvs_settings': {
579             'VCLinkerTool': {
580               'SubSystem': '2',         # Set /SUBSYSTEM:WINDOWS
581             },
582           },
583           'configurations': {
584             'Common_Base': {
585               'msvs_target_platform': 'x64',
586             },
587           },
588         },
589       ]},  # 'targets'
590     ],  # OS=="win" and target_arch=="ia32"
591     ['chromeos==1', {
592       'includes': [ 'chrome_browser_chromeos.gypi' ],
593     }],  # chromeos==1
594     ['OS=="android"',
595       {
596       'targets': [
597         {
598           # GN: //chrome/android:chrome_java
599           'target_name': 'chrome_java',
600           'type': 'none',
601           'dependencies': [
602             'activity_type_ids_java',
603             'chrome_resources.gyp:chrome_strings',
604             'chrome_strings_grd',
605             'chrome_version_java',
606             'document_tab_model_info_proto_java',
607             'profile_account_management_metrics_java',
608             'content_setting_java',
609             'content_settings_type_java',
610             'page_info_connection_type_java',
611             'profile_sync_service_model_type_selection_java',
612             'resource_id_java',
613             'toolbar_model_security_levels_java',
614             'tab_load_status_java',
615             '../base/base.gyp:base',
616             '../components/components.gyp:bookmarks_java',
617             '../components/components.gyp:dom_distiller_core_java',
618             '../components/components.gyp:enhanced_bookmarks_launch_location_srcjar',
619             '../components/components.gyp:gcm_driver_java',
620             '../components/components.gyp:invalidation_java',
621             '../components/components.gyp:navigation_interception_java',
622             '../components/components.gyp:precache_java',
623             '../components/components.gyp:variations_java',
624             '../components/components.gyp:web_contents_delegate_android_java',
625             '../content/content.gyp:content_java',
626             '../media/media.gyp:media_java',
627             '../printing/printing.gyp:printing_java',
628             '../sync/sync.gyp:sync_java',
629             '../third_party/android_data_chart/android_data_chart.gyp:android_data_chart_java',
630             '../third_party/android_media/android_media.gyp:android_media_java',
631             '../third_party/android_tools/android_tools.gyp:android_support_v7_appcompat_javalib',
632             '../third_party/android_tools/android_tools.gyp:android_support_v7_mediarouter_javalib',
633             '../third_party/android_tools/android_tools.gyp:android_support_v13_javalib',
634             '../third_party/android_tools/android_tools.gyp:google_play_services_javalib',
635             '../ui/android/ui_android.gyp:ui_java',
636           ],
637           'variables': {
638             'java_in_dir': '../chrome/android/java',
639             'has_java_resources': 1,
640             'R_package': 'org.chromium.chrome',
641             'R_package_relpath': 'org/chromium/chrome',
642             # Include xml string files generated from generated_resources.grd
643             'res_extra_dirs': ['<(SHARED_INTERMEDIATE_DIR)/chrome/java/res'],
644             'res_extra_files': ['<!@pymod_do_main(grit_info <@(grit_defines) --outputs "<(SHARED_INTERMEDIATE_DIR)/chrome" app/generated_resources.grd)'],
645           },
646           'includes': [
647             '../build/java.gypi',
648           ],
649         },
650         {
651           # GN: //chrome/android:chrome_strings_grd
652           'target_name': 'chrome_strings_grd',
653           'type': 'none',
654           'variables': {
655             'grd_file': '../chrome/android/java/strings/android_chrome_strings.grd',
656           },
657           'includes': [
658             '../build/java_strings_grd.gypi',
659           ],
660         },
661         {
662           # GN: //chrome:content_setting_javagen
663           'target_name': 'content_setting_java',
664           'type': 'none',
665           'variables': {
666             'source_file': '../components/content_settings/core/common/content_settings.h',
667           },
668           'includes': [ '../build/android/java_cpp_enum.gypi' ],
669         },
670         {
671           # GN: //chrome:content_settings_type_javagen
672           'target_name': 'content_settings_type_java',
673           'type': 'none',
674           'variables': {
675             'source_file': '../components/content_settings/core/common/content_settings_types.h',
676           },
677           'includes': [ '../build/android/java_cpp_enum.gypi' ],
678         },
679         {
680           # GN: //chrome:page_info_connection_type_javagen
681           'target_name': 'page_info_connection_type_java',
682           'type': 'none',
683           'variables': {
684             'source_file': 'browser/ui/android/website_settings_popup_android.h',
685           },
686           'includes': [ '../build/android/java_cpp_enum.gypi' ],
687         },
688       ], # 'targets'
689       'includes': [
690         'chrome_android.gypi',
691       ]}, # 'includes'
692     ],  # OS=="android"
693     ['configuration_policy==1 and OS!="android" and OS!="ios"', {
694       'includes': [ 'policy.gypi', ],
695     }],
696     ['enable_extensions==1', {
697       'includes': [
698         'chrome_browser_extensions.gypi',
699       ],
700     }],
701     ['enable_print_preview==1', {
702       'targets': [
703         {
704           # GN version: //chrome/service
705           'target_name': 'service',
706           'type': 'static_library',
707           'variables': { 'enable_wexit_time_destructors': 1, },
708           'dependencies': [
709             'chrome_resources.gyp:chrome_strings',
710             'common',
711             'common_net',
712             '../base/base.gyp:base',
713             '../components/components.gyp:cloud_devices_common',
714             '../google_apis/google_apis.gyp:google_apis',
715             '../jingle/jingle.gyp:notifier',
716             '../net/net.gyp:net',
717             '../printing/printing.gyp:printing',
718             '../skia/skia.gyp:skia',
719             '../third_party/libjingle/libjingle.gyp:libjingle',
720           ],
721           'sources': [
722             # Note: sources list duplicated in GN build.
723             'service/cloud_print/cdd_conversion_win.cc',
724             'service/cloud_print/cdd_conversion_win.h',
725             'service/cloud_print/cloud_print_auth.cc',
726             'service/cloud_print/cloud_print_auth.h',
727             'service/cloud_print/cloud_print_connector.cc',
728             'service/cloud_print/cloud_print_connector.h',
729             'service/cloud_print/cloud_print_proxy.cc',
730             'service/cloud_print/cloud_print_proxy.h',
731             'service/cloud_print/cloud_print_proxy_backend.cc',
732             'service/cloud_print/cloud_print_proxy_backend.h',
733             'service/cloud_print/cloud_print_service_helpers.cc',
734             'service/cloud_print/cloud_print_service_helpers.h',
735             'service/cloud_print/cloud_print_token_store.cc',
736             'service/cloud_print/cloud_print_token_store.h',
737             'service/cloud_print/cloud_print_url_fetcher.cc',
738             'service/cloud_print/cloud_print_url_fetcher.h',
739             'service/cloud_print/cloud_print_wipeout.cc',
740             'service/cloud_print/cloud_print_wipeout.h',
741             'service/cloud_print/connector_settings.cc',
742             'service/cloud_print/connector_settings.h',
743             'service/cloud_print/job_status_updater.cc',
744             'service/cloud_print/job_status_updater.h',
745             'service/cloud_print/print_system.cc',
746             'service/cloud_print/print_system.h',
747             'service/cloud_print/print_system_win.cc',
748             'service/cloud_print/printer_job_handler.cc',
749             'service/cloud_print/printer_job_handler.h',
750             'service/cloud_print/printer_job_queue_handler.cc',
751             'service/cloud_print/printer_job_queue_handler.h',
752             'service/net/service_url_request_context_getter.cc',
753             'service/net/service_url_request_context_getter.h',
754             'service/service_ipc_server.cc',
755             'service/service_ipc_server.h',
756             'service/service_main.cc',
757             'service/service_process.cc',
758             'service/service_process.h',
759             'service/service_process_prefs.cc',
760             'service/service_process_prefs.h',
761             'service/service_utility_process_host.cc',
762             'service/service_utility_process_host.h',
763           ],
764           'include_dirs': [
765             '..',
766           ],
767           'conditions': [
768             ['use_cups==1', {
769               'dependencies': [
770                 '../printing/printing.gyp:cups',
771               ],
772               'sources': [
773                 'service/cloud_print/print_system_cups.cc',
774               ],
775             }],
776             ['OS!="win" and use_cups!=1', {
777               'sources': [
778                 'service/cloud_print/print_system_dummy.cc',
779               ],
780             }],
781             ['OS!="win"', {
782               'sources!': [
783                 'service/service_utility_process_host.cc',
784                 'service/service_utility_process_host.h',
785               ],
786             }],
787           ],
788         },
789       ],
790     }],
791     ['kasko==1', {
792       'variables': {
793         'kasko_exe_dir': '<(DEPTH)/third_party/kasko',
794       },
795       'targets': [
796         {
797           'target_name': 'kasko_dll',
798           'type': 'none',
799           'outputs': [
800             '<(PRODUCT_DIR)/kasko.dll',
801             '<(PRODUCT_DIR)/kasko.dll.pdb',
802           ],
803           'copies': [
804             {
805               'destination': '<(PRODUCT_DIR)',
806               'files': [
807                 '<(kasko_exe_dir)/kasko.dll',
808                 '<(kasko_exe_dir)/kasko.dll.pdb',
809               ],
810             },
811           ],
812           'direct_dependent_settings': {
813             'msvs_settings': {
814               'VCLinkerTool': {
815                 'AdditionalDependencies': [
816                   'kasko.dll.lib',
817                 ],
818                 'AdditionalLibraryDirectories': [
819                   '<(DEPTH)/third_party/kasko'
820                 ],
821               },
822             },
823           },
824         },
825       ],
826     }],
827   ],  # 'conditions'