# Copyright (c) 2012 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. { 'targets': [ { 'target_name': 'chrome', 'type': 'executable', 'mac_bundle': 1, 'variables': { 'use_system_xdg_utils%': 0, 'enable_wexit_time_destructors': 1, }, 'sources': [ 'app/breakpad_field_trial_win.cc', 'app/breakpad_field_trial_win.h', 'app/breakpad_win.cc', 'app/breakpad_win.h', 'app/chrome_exe_main_aura.cc', 'app/chrome_exe_main_gtk.cc', 'app/chrome_exe_main_mac.cc', 'app/chrome_exe_main_win.cc', 'app/chrome_exe_resource.h', 'app/client_util.cc', 'app/client_util.h', 'app/hard_error_handler_win.cc', 'app/hard_error_handler_win.h', 'app/metro_driver_win.cc', 'app/metro_driver_win.h', '../content/app/startup_helper_win.cc', ], 'mac_bundle_resources': [ 'app/app-Info.plist', ], # TODO(mark): Come up with a fancier way to do this. It should only # be necessary to list app-Info.plist once, not the three times it is # listed here. 'mac_bundle_resources!': [ 'app/app-Info.plist', ], 'xcode_settings': { 'CHROMIUM_STRIP_SAVE_FILE': 'app/app.saves', 'INFOPLIST_FILE': 'app/app-Info.plist', }, 'conditions': [ ['component == "shared_library"', { 'msvs_settings': { 'VCManifestTool': { 'EmbedManifest': 'false', }, }, }], ['order_profiling!=0 and (chromeos==1 or OS=="linux")', { 'dependencies' : [ '../tools/cygprofile/cygprofile.gyp:cygprofile', ], }], ['order_text_section!=""', { 'target_conditions' : [ ['_toolset=="target"', { 'ldflags': [ '-Wl,-section-ordering-file=<(order_text_section)' ], }], ] }], ['OS == "android"', { # Don't put the 'chrome' target in 'all' on android 'suppress_wildcard': 1, }], ['os_posix == 1 and OS != "mac" and OS != "android"', { 'actions': [ { 'action_name': 'manpage', 'conditions': [ [ 'branding == "Chrome"', { 'variables': { 'name': 'Google Chrome', 'filename': 'google-chrome', 'confdir': 'google-chrome', }, }, { # else branding!="Chrome" 'variables': { 'name': 'Chromium', 'filename': 'chromium-browser', 'confdir': 'chromium', }, }], ], 'inputs': [ 'tools/build/linux/sed.sh', 'app/resources/manpage.1.in', ], 'outputs': [ '<(PRODUCT_DIR)/chrome.1', ], 'action': [ 'tools/build/linux/sed.sh', 'app/resources/manpage.1.in', '<@(_outputs)', '-e', 's/@@NAME@@/<(name)/', '-e', 's/@@FILENAME@@/<(filename)/', '-e', 's/@@CONFDIR@@/<(confdir)/', ], 'message': 'Generating manpage' }, ], 'conditions': [ ['linux_use_tcmalloc==1', { 'dependencies': [ '<(allocator_target)', ], }, ], ['profiling==0 and linux_disable_pie==0', { 'ldflags': [ '-pie', ], }], ['use_system_xdg_utils==0', { 'copies': [ { 'destination': '<(PRODUCT_DIR)', 'files': ['tools/build/linux/chrome-wrapper', '../third_party/xdg-utils/scripts/xdg-mime', '../third_party/xdg-utils/scripts/xdg-settings', ], # The wrapper script above may need to generate a .desktop # file, which requires an icon. So, copy one next to the # script. 'conditions': [ ['branding=="Chrome"', { 'files': ['app/theme/google_chrome/product_logo_48.png'] }, { # else: 'branding!="Chrome" 'files': ['app/theme/chromium/product_logo_48.png'] }], ], }, ], }], ['toolkit_uses_gtk == 1', { 'dependencies': [ # On Linux, link the dependencies (libraries) that make up actual # Chromium functionality directly into the executable. '<@(chromium_dependencies)', # Needed for chrome_main.cc initialization of libraries. '../build/linux/system.gyp:gtk', # Needed to use the master_preferences functions 'installer_util', ], }, { # else toolkit_uses_gtk == 1 'dependencies': [ # On Linux, link the dependencies (libraries) that make up actual # Chromium functionality directly into the executable. '<@(chromium_dependencies)', # Needed for chrome_main.cc initialization of libraries. '../build/linux/system.gyp:x11', '../build/linux/system.gyp:pangocairo', '../build/linux/system.gyp:xext', # Needed to use the master_preferences functions 'installer_util', ], }], ], 'sources': [ 'app/chrome_dll_resource.h', 'app/chrome_main.cc', 'app/chrome_main_delegate.cc', 'app/chrome_main_delegate.h', ], }], ['OS=="mac"', { # 'branding' is a variable defined in common.gypi # (e.g. "Chromium", "Chrome") 'conditions': [ ['branding=="Chrome"', { 'mac_bundle_resources': [ 'app/theme/google_chrome/app.icns', 'app/theme/google_chrome/document.icns', 'browser/ui/cocoa/applescript/scripting.sdef', ], }, { # else: 'branding!="Chrome" 'mac_bundle_resources': [ 'app/theme/chromium/app.icns', 'app/theme/chromium/document.icns', 'browser/ui/cocoa/applescript/scripting.sdef', ], }], ['mac_breakpad==1', { 'variables': { # A real .dSYM is needed for dump_syms to operate on. 'mac_real_dsym': 1, }, 'xcode_settings': { # With mac_real_dsym set, strip_from_xcode won't be used. # Specify CHROMIUM_STRIP_SAVE_FILE directly to Xcode. 'STRIPFLAGS': '-s $(CHROMIUM_STRIP_SAVE_FILE)', }, 'dependencies': [ '../breakpad/breakpad.gyp:dump_syms', '../breakpad/breakpad.gyp:symupload', # In order to process symbols for the Remoting Host plugin, # that plugin needs to be built beforehand. Since the # "Dump Symbols" step hangs off this target, that plugin also # needs to be added as a dependency. '../remoting/remoting.gyp:remoting_host_plugin', ], # The "Dump Symbols" post-build step is in a target_conditions # block so that it will follow the "Strip If Needed" step if that # is also being used. There is no standard configuration where # both of these steps occur together, but Mark likes to use this # configuration sometimes when testing Breakpad-enabled builds # without the time overhead of creating real .dSYM files. When # both "Dump Symbols" and "Strip If Needed" are present, "Dump # Symbols" must come second because "Strip If Needed" creates # a fake .dSYM that dump_syms needs to fake dump. Since # "Strip If Needed" is added in a target_conditions block in # common.gypi, "Dump Symbols" needs to be in an (always true) # target_conditions block. 'target_conditions': [ ['1 == 1', { 'postbuilds': [ { 'postbuild_name': 'Dump Symbols', 'variables': { 'dump_product_syms_path': 'tools/build/mac/dump_product_syms', }, 'action': ['<(dump_product_syms_path)', '<(branding)'], }, ], }], ], }], # mac_breakpad ], 'product_name': '<(mac_product_name)', 'xcode_settings': { # chrome/app/app-Info.plist has: # CFBundleIdentifier of CHROMIUM_BUNDLE_ID # CFBundleName of CHROMIUM_SHORT_NAME # CFBundleSignature of CHROMIUM_CREATOR # Xcode then replaces these values with the branded values we set # as settings on the target. 'CHROMIUM_BUNDLE_ID': '<(mac_bundle_id)', 'CHROMIUM_CREATOR': '<(mac_creator)', 'CHROMIUM_SHORT_NAME': '<(branding)', }, 'dependencies': [ 'helper_app', 'infoplist_strings_tool', 'interpose_dependency_shim', 'chrome_manifest_bundle', # On Mac, make sure we've built chrome_dll, which contains all of # the library code with Chromium functionality. 'chrome_dll', ], 'mac_bundle_resources': [ '<(PRODUCT_DIR)/<(mac_bundle_id).manifest', ], 'actions': [ { # Generate the InfoPlist.strings file 'action_name': 'Generate InfoPlist.strings files', 'variables': { 'tool_path': '<(PRODUCT_DIR)/infoplist_strings_tool', # Unique dir to write to so the [lang].lproj/InfoPlist.strings # for the main app and the helper app don't name collide. 'output_path': '<(INTERMEDIATE_DIR)/app_infoplist_strings', }, 'conditions': [ [ 'branding == "Chrome"', { 'variables': { 'branding_name': 'google_chrome_strings', }, }, { # else branding!="Chrome" 'variables': { 'branding_name': 'chromium_strings', }, }], ], 'inputs': [ '<(tool_path)', '<(version_path)', # TODO: remove this helper when we have loops in GYP '>!@(<(apply_locales_cmd) \'<(grit_out_dir)/<(branding_name)_ZZLOCALE.pak\' <(locales))', ], 'outputs': [ # TODO: remove this helper when we have loops in GYP '>!@(<(apply_locales_cmd) -d \'<(output_path)/ZZLOCALE.lproj/InfoPlist.strings\' <(locales))', ], 'action': [ '<(tool_path)', '-b', '<(branding_name)', '-v', '<(version_path)', '-g', '<(grit_out_dir)', '-o', '<(output_path)', '-t', 'main', '<@(locales)', ], 'message': 'Generating the language InfoPlist.strings files', 'process_outputs_as_mac_bundle_resources': 1, }, ], 'copies': [ { 'destination': '<(PRODUCT_DIR)/<(mac_product_name).app/Contents/Versions/<(version_full)', 'files': [ '<(PRODUCT_DIR)/<(mac_product_name) Helper.app', '<(PRODUCT_DIR)/libplugin_carbon_interpose.dylib', ], }, ], 'postbuilds': [ { 'postbuild_name': 'Copy <(mac_product_name) Framework.framework', 'action': [ '../build/mac/copy_framework_unversioned.sh', '${BUILT_PRODUCTS_DIR}/<(mac_product_name) Framework.framework', '${BUILT_PRODUCTS_DIR}/${CONTENTS_FOLDER_PATH}/Versions/<(version_full)', ], }, { # Modify the Info.plist as needed. The script explains why this # is needed. This is also done in the helper_app and chrome_dll # targets. Use --breakpad=0 to not include any Breakpad # information; that all goes into the framework's Info.plist. # Keystone information is included if Keystone is enabled. The # application reads Keystone keys from this plist and not the # framework's, and the ticket will reference this Info.plist to # determine the tag of the installed product. Use --scm=1 to # include SCM information. The --pdf flag controls whether # to insert PDF as a supported type identifier that can be # opened. 'postbuild_name': 'Tweak Info.plist', 'action': ['<(tweak_info_plist_path)', '--breakpad=0', '--keystone=<(mac_keystone)', '--scm=1', '--pdf=<(internal_pdf)', '--bundle_id=<(mac_bundle_id)'], }, { 'postbuild_name': 'Clean up old versions', 'action': [ 'tools/build/mac/clean_up_old_versions', '<(version_full)' ], }, { # This postbuid step is responsible for creating the following # helpers: # # For unofficial Chromium branding, Chromium Helper EH.app and # Chromium Helper NP.app are created from Chromium Helper.app. # For official Google Chrome branding, Google Chrome Helper # EH.app and Google Chrome Helper NP.app are created from # Google Chrome Helper.app. # # The EH helper is marked for an executable heap. The NP helper # is marked for no PIE (ASLR). # # Normally, applications shipping as part of offical builds with # Google Chrome branding have dsymutil (dwarf-with-dsym, # mac_real_dsym) and dump_syms (mac_breakpad) run on them to # produce a .dSYM bundle and a Breakpad .sym file. This is # unnecessary for the "More Helpers" because they're identical # to the original helper except for the bits in their Mach-O # headers that change to enable or disable special features. # Each .dSYM is identified by UUID stored in a Mach-O file's # LC_UUID load command. Because the "More Helpers" share a UUID # with the original helper, there's no need to run dsymutil # again. All helpers can share the same .dSYM. Special handling # is performed in chrome/tools/build/mac/dump_product_syms to # prepare their Breakpad symbol files. 'postbuild_name': 'Make More Helpers', 'action': [ '../build/mac/make_more_helpers.sh', 'Versions/<(version_full)', '<(mac_product_name)', ], }, { # Make sure there isn't any Objective-C in the browser app's # executable. 'postbuild_name': 'Verify No Objective-C', 'action': [ '../build/mac/verify_no_objc.sh', ], }, ], # postbuilds }, { # OS != "mac" 'conditions': [ # TODO: add a: # 'product_name': 'chromium' # whenever we convert the rest of the infrastructure # (buildbots etc.) to understand the branding gyp define. # NOTE: chrome/app/theme/chromium/BRANDING and # chrome/app/theme/google_chrome/BRANDING have the short name # "chrome" etc.; should we try to extract from there instead? # On Mac, this is done in chrome_dll.gypi. ['internal_pdf', { 'dependencies': [ '../pdf/pdf.gyp:pdf', ], 'conditions': [ # CrOS does this in a separate build step. ['OS=="linux" and chromeos==0 and linux_dump_symbols==1', { 'dependencies': [ '../pdf/pdf.gyp:pdf_linux_symbols', ], }], # OS=="linux" and chromeos==0 and linux_dump_symbols==1 ], }], # internal_pdf ], 'dependencies': [ 'chrome_resources.gyp:packed_extra_resources', 'chrome_resources.gyp:packed_resources', # Copy Flash Player files to PRODUCT_DIR if applicable. Let the .gyp # file decide what to do on a per-OS basis; on Mac, internal plugins # go inside the framework, so this dependency is in chrome_dll.gypi. '../third_party/adobe/flash/flash_player.gyp:flash_player', '../third_party/adobe/flash/flash_player.gyp:flapper_binaries', ], }], ['OS=="mac" and asan==1', { 'xcode_settings': { # Override the outer definition of CHROMIUM_STRIP_SAVE_FILE. 'CHROMIUM_STRIP_SAVE_FILE': 'app/app_asan.saves', }, }], ['OS=="linux"', { 'conditions': [ ['branding=="Chrome"', { 'dependencies': [ 'linux_installer_configs', ], }], ['selinux==0', { 'dependencies': [ '../sandbox/sandbox.gyp:sandbox', ], }], # For now, do not build nacl_helper when disable_nacl=1 # or when arm is enabled # http://code.google.com/p/gyp/issues/detail?id=239 ['disable_nacl==0 and target_arch!="arm" and coverage==0', { 'dependencies': [ '../native_client/src/trusted/service_runtime/linux/nacl_bootstrap.gyp:nacl_helper_bootstrap', 'nacl_helper', ], }], ], }], ['OS=="win"', { 'dependencies': [ 'chrome_dll', 'chrome_version_resources', 'installer_util', 'image_pre_reader', '../base/base.gyp:base', '../breakpad/breakpad.gyp:breakpad_handler', '../breakpad/breakpad.gyp:breakpad_sender', '../sandbox/sandbox.gyp:sandbox', 'app/policy/cloud_policy_codegen.gyp:policy', ], 'sources': [ 'app/chrome_exe.rc', '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_exe_version.rc', ], 'msvs_settings': { 'VCLinkerTool': { 'ImportLibrary': '$(OutDir)\\lib\\chrome_exe.lib', 'ProgramDatabaseFile': '$(OutDir)\\chrome_exe.pdb', 'DelayLoadDLLs': [ 'dbghelp.dll', 'dwmapi.dll', 'uxtheme.dll', 'ole32.dll', 'oleaut32.dll', ], # Set /SUBSYSTEM:WINDOWS for chrome.exe itself. 'SubSystem': '2', }, 'VCManifestTool': { 'AdditionalManifestFiles': '$(ProjectDir)\\app\\chrome.exe.manifest', }, }, 'actions': [ { 'action_name': 'first_run', 'inputs': [ 'app/FirstRun', ], 'outputs': [ '<(PRODUCT_DIR)/First Run', ], 'action': ['cp', '-f', '<@(_inputs)', '<@(_outputs)'], 'message': 'Copy first run complete sentinel file', }, ], }, { # 'OS!="win" 'sources!': [ 'app/client_util.cc', ], }], ['OS=="win" and component=="shared_library"', { 'defines': ['COMPILE_CONTENT_STATICALLY'], }], ['OS=="win" and (MSVS_VERSION=="2010" or MSVS_VERSION=="2010e")', { 'dependencies': [ '../win8/metro_driver/metro_driver.gyp:*', '../win8/delegate_execute/delegate_execute.gyp:*', ], }], ], }, ], 'conditions': [ ['OS=="win"', { 'targets': [ { 'target_name': 'image_pre_reader', 'type': 'static_library', 'sources': [ 'app/image_pre_reader_win.cc', 'app/image_pre_reader_win.h', ], 'dependencies': [ '../base/base.gyp:base', ], }, ], 'conditions': [ ['disable_nacl!=1', { 'targets': [ { 'target_name': 'chrome_nacl_win64', 'type': 'executable', 'product_name': 'nacl64', 'sources': [ 'app/breakpad_win.cc', 'app/hard_error_handler_win.cc', 'nacl/nacl_exe_win_64.cc', '../content/app/startup_helper_win.cc', '../content/common/debug_flags.cc', # Needed for sandbox_policy.cc '../content/common/sandbox_init_win.cc', '../content/common/sandbox_policy.cc', '../content/public/common/content_switches.cc', '<(SHARED_INTERMEDIATE_DIR)/chrome_version/nacl64_exe_version.rc', ], 'dependencies': [ 'app/policy/cloud_policy_codegen.gyp:policy_win64', 'chrome_version_resources', 'common_constants_win64', 'installer_util_nacl_win64', 'nacl_win64', '../breakpad/breakpad.gyp:breakpad_handler_win64', '../breakpad/breakpad.gyp:breakpad_sender_win64', '../base/base.gyp:base_i18n_nacl_win64', '../base/base.gyp:base_nacl_win64', '../base/base.gyp:base_static_win64', '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations_win64', '../crypto/crypto.gyp:crypto_nacl_win64', '../ipc/ipc.gyp:ipc_win64', '../sandbox/sandbox.gyp:sandbox_win64', ], 'defines': [ '<@(nacl_win64_defines)', 'COMPILE_CONTENT_STATICALLY', ], 'include_dirs': [ '<(SHARED_INTERMEDIATE_DIR)/chrome', ], 'msvs_settings': { 'VCLinkerTool': { 'ImportLibrary': '$(OutDir)\\lib\\nacl64_exe.lib', 'ProgramDatabaseFile': '$(OutDir)\\nacl64_exe.pdb', 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS }, }, 'configurations': { 'Common_Base': { 'msvs_target_platform': 'x64', }, }, }, ], }, { # else (disable_nacl==1) 'targets': [ { 'target_name': 'chrome_nacl_win64', 'type': 'none', 'sources': [], }, ], }], ], }], ], }