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.
8 'target_name': 'chrome',
10 'dependencies': [ 'chrome_initial', ],
12 ['OS=="linux" and clang_type_profiler==1', {
14 '<(DEPTH)/base/allocator/allocator.gyp:type_profiler',
21 'reorder_py_path': '<(DEPTH)/build/win/reorder-imports.py',
22 # See comment in chrome_dll.gypi in the hardlink_to_output
23 # target for why this cannot be 'initial' like the DLL.
24 'exe_input_path':'$(OutDir)\\initialexe',
25 'exe_output_path':'<(PRODUCT_DIR)',
27 'action_name': 'reorder_imports',
30 '$(OutDir)\\initialexe\\chrome.exe',
33 '<(PRODUCT_DIR)\\chrome.exe',
34 '<(PRODUCT_DIR)\\chrome.exe.pdb',
39 '-i', '<(exe_input_path)',
40 '-o', '<(exe_output_path)',
41 '-a', '<(target_arch)',
43 'message': 'Reordering Imports',
50 # GN version: //chrome
51 'target_name': 'chrome_initial',
53 # Name the exe chrome.exe, not chrome_initial.exe.
54 'product_name': 'chrome',
57 'use_system_xdg_utils%': 0,
58 'enable_wexit_time_destructors': 1,
61 # Note that due to InitializeSandboxInfo, this must be directly linked
62 # into chrome.exe, not into a dependent.
63 '<(DEPTH)/content/app/startup_helper_win.cc',
64 '<(DEPTH)/content/public/common/content_switches.cc',
65 'app/chrome_exe_load_config_win.cc',
66 'app/chrome_exe_main_aura.cc',
67 'app/chrome_exe_main_mac.cc',
68 'app/chrome_exe_main_win.cc',
69 'app/chrome_exe_resource.h',
70 'app/chrome_watcher_client_win.cc',
71 'app/chrome_watcher_client_win.h',
72 'app/chrome_watcher_command_line_win.cc',
73 'app/chrome_watcher_command_line_win.h',
76 'app/kasko_client.cc',
78 'app/signature_validator_win.cc',
79 'app/signature_validator_win.h',
81 'mac_bundle_resources': [
84 # TODO(mark): Come up with a fancier way to do this. It should only
85 # be necessary to list app-Info.plist once, not the three times it is
87 'mac_bundle_resources!': [
91 'CHROMIUM_STRIP_SAVE_FILE': 'app/app.saves',
92 'INFOPLIST_FILE': 'app/app-Info.plist',
95 ['order_profiling!=0 and (chromeos==1 or OS=="linux")', {
97 '../tools/cygprofile/cygprofile.gyp:cygprofile',
100 ['order_text_section!=""', {
101 'target_conditions' : [
102 ['_toolset=="target"', {
104 '-Wl,-section-ordering-file=<(order_text_section)' ],
111 'chrome_watcher_client',
112 '../components/components.gyp:browser_watcher_client',
122 ['OS == "android"', {
123 # Don't put the 'chrome' target in 'all' on android
124 'suppress_wildcard': 1,
126 ['os_posix == 1 and OS != "mac" and OS != "android"', {
129 'action_name': 'manpage',
131 [ 'branding == "Chrome"', {
133 'name': 'Google Chrome',
134 'filename': 'google-chrome',
135 'confdir': 'google-chrome',
137 }, { # else branding!="Chrome"
140 'filename': 'chromium-browser',
141 'confdir': 'chromium',
146 'tools/build/linux/sed.py',
147 'app/resources/manpage.1.in',
150 '<(PRODUCT_DIR)/chrome.1',
154 'tools/build/linux/sed.py',
155 'app/resources/manpage.1.in',
157 '-e', 's/@@NAME@@/<(name)/',
158 '-e', 's/@@FILENAME@@/<(filename)/',
159 '-e', 's/@@CONFDIR@@/<(confdir)/',
161 'message': 'Generating manpage'
165 ['use_allocator!="none"', {
167 '<(allocator_target)',
171 ['profiling==0 and linux_disable_pie==0', {
176 ['use_system_xdg_utils==0', {
179 'destination': '<(PRODUCT_DIR)',
180 'files': ['tools/build/linux/chrome-wrapper',
181 '../third_party/xdg-utils/scripts/xdg-mime',
182 '../third_party/xdg-utils/scripts/xdg-settings',
183 'app/theme/<(branding_path_component)/product_logo_48.png',
188 # x11 build. Needed for chrome_main.cc initialization of libraries.
191 '../build/linux/system.gyp:x11',
192 '../build/linux/system.gyp:xext',
195 ['OS=="linux" and enable_plugins==1', {
197 '../pdf/pdf.gyp:pdf',
202 'app/chrome_dll_resource.h',
203 'app/chrome_main.cc',
204 'app/chrome_main_delegate.cc',
205 'app/chrome_main_delegate.h',
208 # On Linux, link the dependencies (libraries) that make up actual
209 # Chromium functionality directly into the executable.
210 '<@(chromium_browser_dependencies)',
211 '<@(chromium_child_dependencies)',
212 '../content/content.gyp:content_app_both',
213 # Needed for chrome_main.cc initialization of libraries.
214 '../build/linux/system.gyp:pangocairo',
215 # Needed to use the master_preferences functions
221 ['mac_breakpad==1', {
223 # A real .dSYM is needed for dump_syms to operate on.
227 # With mac_real_dsym set, strip_from_xcode won't be used.
228 # Specify CHROMIUM_STRIP_SAVE_FILE directly to Xcode.
229 'STRIPFLAGS': '-s $(CHROMIUM_STRIP_SAVE_FILE)',
232 '../breakpad/breakpad.gyp:dump_syms',
233 '../breakpad/breakpad.gyp:symupload',
235 # The "Dump Symbols" post-build step is in a target_conditions
236 # block so that it will follow the "Strip If Needed" step if that
237 # is also being used. There is no standard configuration where
238 # both of these steps occur together, but Mark likes to use this
239 # configuration sometimes when testing Breakpad-enabled builds
240 # without the time overhead of creating real .dSYM files. When
241 # both "Dump Symbols" and "Strip If Needed" are present, "Dump
242 # Symbols" must come second because "Strip If Needed" creates
243 # a fake .dSYM that dump_syms needs to fake dump. Since
244 # "Strip If Needed" is added in a target_conditions block in
245 # common.gypi, "Dump Symbols" needs to be in an (always true)
246 # target_conditions block.
247 'target_conditions': [
251 'postbuild_name': 'Dump Symbols',
253 'dump_product_syms_path':
254 'tools/build/mac/dump_product_syms',
256 'action': ['<(dump_product_syms_path)',
264 'product_name': '<(mac_product_name)',
266 # chrome/app/app-Info.plist has:
267 # CFBundleIdentifier of CHROMIUM_BUNDLE_ID
268 # CFBundleName of CHROMIUM_SHORT_NAME
269 # CFBundleSignature of CHROMIUM_CREATOR
270 # Xcode then replaces these values with the branded values we set
271 # as settings on the target.
272 'CHROMIUM_BUNDLE_ID': '<(mac_bundle_id)',
273 'CHROMIUM_CREATOR': '<(mac_creator)',
274 'CHROMIUM_SHORT_NAME': '<(branding)',
277 '../components/components.gyp:chrome_manifest_bundle',
279 'infoplist_strings_tool',
280 # On Mac, make sure we've built chrome_dll, which contains all of
281 # the library code with Chromium functionality.
284 'mac_bundle_resources': [
285 'app/theme/<(branding_path_component)/mac/app.icns',
286 'app/theme/<(branding_path_component)/mac/document.icns',
287 'browser/ui/cocoa/applescript/scripting.sdef',
288 '<(PRODUCT_DIR)/<(mac_bundle_id).manifest',
292 # Generate the InfoPlist.strings file
293 'action_name': 'Generate InfoPlist.strings files',
295 'tool_path': '<(PRODUCT_DIR)/infoplist_strings_tool',
296 # Unique dir to write to so the [lang].lproj/InfoPlist.strings
297 # for the main app and the helper app don't name collide.
298 'output_path': '<(INTERMEDIATE_DIR)/app_infoplist_strings',
299 'branding_name': '<(branding_path_component)_strings',
304 # TODO: remove this helper when we have loops in GYP
305 '>!@(<(apply_locales_cmd) \'<(grit_out_dir)/<(branding_name)_ZZLOCALE.pak\' <(locales))',
308 # TODO: remove this helper when we have loops in GYP
309 '>!@(<(apply_locales_cmd) -d \'<(output_path)/ZZLOCALE.lproj/InfoPlist.strings\' <(locales))',
313 '-b', '<(branding_name)',
314 '-v', '<(version_path)',
315 '-g', '<(grit_out_dir)',
316 '-o', '<(output_path)',
320 'message': 'Generating the language InfoPlist.strings files',
321 'process_outputs_as_mac_bundle_resources': 1,
326 'destination': '<(PRODUCT_DIR)/<(mac_product_name).app/Contents/Versions/<(version_full)',
328 '<(PRODUCT_DIR)/<(mac_product_name) Helper.app',
334 'postbuild_name': 'Copy <(mac_product_name) Framework.framework',
336 '../build/mac/copy_framework_unversioned.sh',
337 '${BUILT_PRODUCTS_DIR}/<(mac_product_name) Framework.framework',
338 '${BUILT_PRODUCTS_DIR}/${CONTENTS_FOLDER_PATH}/Versions/<(version_full)',
342 # Modify the Info.plist as needed. The script explains why this
343 # is needed. This is also done in the helper_app and chrome_dll
344 # targets. Use --breakpad=0 to not include any Breakpad
345 # information; that all goes into the framework's Info.plist.
346 # Keystone information is included if Keystone is enabled. The
347 # application reads Keystone keys from this plist and not the
348 # framework's, and the ticket will reference this Info.plist to
349 # determine the tag of the installed product. Use --scm=1 to
350 # include SCM information.
351 'postbuild_name': 'Tweak Info.plist',
352 'action': ['<(tweak_info_plist_path)',
354 '--keystone=<(mac_keystone)',
356 '--bundle_id=<(mac_bundle_id)'],
359 'postbuild_name': 'Clean up old versions',
361 'tools/build/mac/clean_up_old_versions',
366 # This postbuid step is responsible for creating the following
369 # Currently no helpers are produced (crbug.com/520680), but
370 # more will be added soon (crbug.com/497190).
372 # Normally, applications shipping as part of offical builds with
373 # Google Chrome branding have dsymutil (dwarf-with-dsym,
374 # mac_real_dsym) and dump_syms (mac_breakpad) run on them to
375 # produce a .dSYM bundle and a Breakpad .sym file. This is
376 # unnecessary for the "More Helpers" because they're identical
377 # to the original helper except for the bits in their Mach-O
378 # headers that change to enable or disable special features.
379 # Each .dSYM is identified by UUID stored in a Mach-O file's
380 # LC_UUID load command. Because the "More Helpers" share a UUID
381 # with the original helper, there's no need to run dsymutil
382 # again. All helpers can share the same .dSYM. Special handling
383 # is performed in chrome/tools/build/mac/dump_product_syms to
384 # prepare their Breakpad symbol files.
385 'postbuild_name': 'Make More Helpers',
387 '../build/mac/make_more_helpers.sh',
388 'Versions/<(version_full)',
389 '<(mac_product_name)',
393 # Make sure there isn't any Objective-C in the browser app's
395 'postbuild_name': 'Verify No Objective-C',
397 '../build/mac/verify_no_objc.sh',
404 # 'product_name': 'chromium'
405 # whenever we convert the rest of the infrastructure
406 # (buildbots etc.) to understand the branding gyp define.
407 # NOTE: chrome/app/theme/chromium/BRANDING and
408 # chrome/app/theme/google_chrome/BRANDING have the short name
409 # "chrome" etc.; should we try to extract from there instead?
412 '../components/components.gyp:startup_metric_utils',
413 'chrome_resources.gyp:packed_extra_resources',
414 'chrome_resources.gyp:packed_resources',
415 # Copy Flash Player files to PRODUCT_DIR if applicable. Let the .gyp
416 # file decide what to do on a per-OS basis; on Mac, internal plugins
417 # go inside the framework, so this dependency is in chrome_dll.gypi.
418 '../third_party/adobe/flash/flash_player.gyp:flapper_binaries',
419 # Copy CDM files to PRODUCT_DIR if applicable. Let the .gyp
420 # file decide what to do on a per-OS basis; on Mac, internal plugins
421 # go inside the framework, so this dependency is in chrome_dll.gypi.
422 '../third_party/widevine/cdm/widevine_cdm.gyp:widevinecdmadapter',
425 ['chrome_multiple_dll', {
426 'defines': ['CHROME_MULTIPLE_DLL'],
430 ['branding=="Chrome"', {
432 'linux_installer_configs',
435 # For now, do not build nacl_helper when disable_nacl=1
436 # http://code.google.com/p/gyp/issues/detail?id=239
437 ['disable_nacl==0', {
439 '../native_client/src/trusted/service_runtime/linux/nacl_bootstrap.gyp:nacl_helper_bootstrap',
440 '../components/nacl.gyp:nacl_helper',
441 '../components/nacl_nonsfi.gyp:nacl_helper_nonsfi',
446 '../sandbox/sandbox.gyp:sandbox',
453 'chrome_process_finder',
454 'chrome_version_resources',
457 '../base/base.gyp:base',
458 '../crypto/crypto.gyp:crypto',
459 '../breakpad/breakpad.gyp:breakpad_handler',
460 '../breakpad/breakpad.gyp:breakpad_sender',
461 '../chrome_elf/chrome_elf.gyp:chrome_elf',
462 '../components/components.gyp:crash_component',
463 '../components/components.gyp:crash_keys',
464 '../sandbox/sandbox.gyp:sandbox',
465 '../ui/gfx/gfx.gyp:gfx',
466 '../win8/metro_driver/metro_driver.gyp:metro_driver',
467 '../win8/delegate_execute/delegate_execute.gyp:*',
470 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_exe_version.rc',
471 'app/chrome_crash_reporter_client.cc',
472 'app/chrome_crash_reporter_client.h',
474 'common/crash_keys.cc',
475 'common/crash_keys.h',
478 # We still want the _win entry point for sandbox, etc.
479 'app/chrome_exe_main_aura.cc',
483 'ImportLibrary': '$(OutDir)\\lib\\chrome_exe.lib',
484 'OutputFile': '$(OutDir)\\initialexe\\chrome.exe',
492 'AdditionalDependencies': [
498 # Set /SUBSYSTEM:WINDOWS for chrome.exe itself, except for the
499 # AddressSanitizer build where console output is important.
505 'AdditionalManifestFiles': [
506 '$(ProjectDir)\\app\\chrome.exe.manifest',
507 '<(SHARED_INTERMEDIATE_DIR)/chrome/app/version_assembly/version_assembly.manifest',
512 ['configuration_policy==1', {
514 '<(DEPTH)/components/components.gyp:policy',
520 'action_name': 'first_run',
525 '<(PRODUCT_DIR)/First Run',
527 'action': ['python', '../build/cp.py', '<@(_inputs)', '<@(_outputs)'],
528 'message': 'Copy first run complete sentinel file',
531 # GN version: //chrome/app/version_assembly:chrome_exe_manifest
532 'action_name': 'chrome_exe_manifest',
534 'app/version_assembly/chrome_exe_manifest_action.gypi',
538 # GN version: //chrome/app/version_assembly:version_assembly_manifest
539 'action_name': 'version_assembly_manifest',
541 'app/version_assembly/version_assembly_manifest_action.gypi',
547 'app/client_util.cc',
550 ['OS=="win" and component=="shared_library"', {
551 'defines': ['COMPILE_CONTENT_STATICALLY'],
560 'target_name': 'image_pre_reader',
561 'type': 'static_library',
563 'app/image_pre_reader_win.cc',
564 'app/image_pre_reader_win.h',
567 '../base/base.gyp:base',
572 ['disable_nacl!=1 and target_arch=="ia32"', {
575 'target_name': 'chrome_nacl_win64',
576 'type': 'executable',
577 'product_name': 'nacl64',
579 '../content/app/startup_helper_win.cc',
580 '../content/common/sandbox_init_win.cc',
581 '../content/common/sandbox_win.cc',
582 '../content/public/common/content_switches.cc',
583 '../content/public/common/sandboxed_process_launcher_delegate.cc',
584 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/nacl64_exe_version.rc',
585 'app/chrome_crash_reporter_client.cc',
586 'common/crash_keys.cc',
587 'nacl/nacl_exe_win_64.cc',
590 'chrome_version_resources',
591 'installer_util_nacl_win64',
592 '../base/base.gyp:base_i18n_nacl_win64',
593 '../base/base.gyp:base_win64',
594 '../base/base.gyp:base_static_win64',
595 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations_win64',
596 '../breakpad/breakpad.gyp:breakpad_handler_win64',
597 '../breakpad/breakpad.gyp:breakpad_sender_win64',
598 '../components/components.gyp:breakpad_win64',
599 '../components/components.gyp:crash_keys_win64',
600 '../chrome/common_constants.gyp:common_constants_win64',
601 '../components/nacl.gyp:nacl_win64',
602 '../crypto/crypto.gyp:crypto_nacl_win64',
603 '../ipc/ipc.gyp:ipc_win64',
604 '../sandbox/sandbox.gyp:sandbox_win64',
607 '<@(nacl_win64_defines)',
608 'COMPILE_CONTENT_STATICALLY',
611 '<(SHARED_INTERMEDIATE_DIR)/chrome',
615 'ImportLibrary': '$(OutDir)\\lib\\nacl64_exe.lib',
616 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
621 'msvs_target_platform': 'x64',
625 ['configuration_policy==1', {
627 '<(DEPTH)/components/components.gyp:policy_win64',
633 }, { # else (disable_nacl==1)
636 'target_name': 'chrome_nacl_win64',
644 ['test_isolation_mode != "noop"', {
647 'target_name': 'chrome_run',
651 # Runtime dependencies
652 '../third_party/mesa/mesa.gyp:osmesa',
655 '../build/isolate.gypi',