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