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 # For unofficial Chromium branding, Chromium Helper EH.app and
370 # Chromium Helper NP.app are created from Chromium Helper.app.
371 # For official Google Chrome branding, Google Chrome Helper
372 # EH.app and Google Chrome Helper NP.app are created from
373 # Google Chrome Helper.app.
375 # The EH helper is marked for an executable heap. The NP helper
376 # is marked for no PIE (ASLR).
378 # Normally, applications shipping as part of offical builds with
379 # Google Chrome branding have dsymutil (dwarf-with-dsym,
380 # mac_real_dsym) and dump_syms (mac_breakpad) run on them to
381 # produce a .dSYM bundle and a Breakpad .sym file. This is
382 # unnecessary for the "More Helpers" because they're identical
383 # to the original helper except for the bits in their Mach-O
384 # headers that change to enable or disable special features.
385 # Each .dSYM is identified by UUID stored in a Mach-O file's
386 # LC_UUID load command. Because the "More Helpers" share a UUID
387 # with the original helper, there's no need to run dsymutil
388 # again. All helpers can share the same .dSYM. Special handling
389 # is performed in chrome/tools/build/mac/dump_product_syms to
390 # prepare their Breakpad symbol files.
391 'postbuild_name': 'Make More Helpers',
393 '../build/mac/make_more_helpers.sh',
394 'Versions/<(version_full)',
395 '<(mac_product_name)',
399 # Make sure there isn't any Objective-C in the browser app's
401 'postbuild_name': 'Verify No Objective-C',
403 '../build/mac/verify_no_objc.sh',
410 # 'product_name': 'chromium'
411 # whenever we convert the rest of the infrastructure
412 # (buildbots etc.) to understand the branding gyp define.
413 # NOTE: chrome/app/theme/chromium/BRANDING and
414 # chrome/app/theme/google_chrome/BRANDING have the short name
415 # "chrome" etc.; should we try to extract from there instead?
418 '../components/components.gyp:startup_metric_utils',
419 'chrome_resources.gyp:packed_extra_resources',
420 'chrome_resources.gyp:packed_resources',
421 # Copy Flash Player files to PRODUCT_DIR if applicable. Let the .gyp
422 # file decide what to do on a per-OS basis; on Mac, internal plugins
423 # go inside the framework, so this dependency is in chrome_dll.gypi.
424 '../third_party/adobe/flash/flash_player.gyp:flapper_binaries',
425 # Copy CDM files to PRODUCT_DIR if applicable. Let the .gyp
426 # file decide what to do on a per-OS basis; on Mac, internal plugins
427 # go inside the framework, so this dependency is in chrome_dll.gypi.
428 '../third_party/widevine/cdm/widevine_cdm.gyp:widevinecdmadapter',
431 ['chrome_multiple_dll', {
432 'defines': ['CHROME_MULTIPLE_DLL'],
436 ['branding=="Chrome"', {
438 'linux_installer_configs',
441 # For now, do not build nacl_helper when disable_nacl=1
442 # http://code.google.com/p/gyp/issues/detail?id=239
443 ['disable_nacl==0', {
445 '../native_client/src/trusted/service_runtime/linux/nacl_bootstrap.gyp:nacl_helper_bootstrap',
446 '../components/nacl.gyp:nacl_helper',
447 '../components/nacl_nonsfi.gyp:nacl_helper_nonsfi',
452 '../sandbox/sandbox.gyp:sandbox',
459 'chrome_process_finder',
460 'chrome_version_resources',
463 '../base/base.gyp:base',
464 '../crypto/crypto.gyp:crypto',
465 '../breakpad/breakpad.gyp:breakpad_handler',
466 '../breakpad/breakpad.gyp:breakpad_sender',
467 '../chrome_elf/chrome_elf.gyp:chrome_elf',
468 '../components/components.gyp:crash_component',
469 '../sandbox/sandbox.gyp:sandbox',
470 '../ui/gfx/gfx.gyp:gfx',
471 '../win8/metro_driver/metro_driver.gyp:metro_driver',
472 '../win8/delegate_execute/delegate_execute.gyp:*',
475 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_exe_version.rc',
476 'app/chrome_crash_reporter_client.cc',
477 'app/chrome_crash_reporter_client.h',
479 'common/crash_keys.cc',
480 'common/crash_keys.h',
483 # We still want the _win entry point for sandbox, etc.
484 'app/chrome_exe_main_aura.cc',
488 'ImportLibrary': '$(OutDir)\\lib\\chrome_exe.lib',
489 'OutputFile': '$(OutDir)\\initialexe\\chrome.exe',
497 'AdditionalDependencies': [
503 # Set /SUBSYSTEM:WINDOWS for chrome.exe itself, except for the
504 # AddressSanitizer build where console output is important.
510 'AdditionalManifestFiles': [
511 '$(ProjectDir)\\app\\chrome.exe.manifest',
512 '<(SHARED_INTERMEDIATE_DIR)/chrome/app/version_assembly/version_assembly.manifest',
517 ['configuration_policy==1', {
519 '<(DEPTH)/components/components.gyp:policy',
525 'action_name': 'first_run',
530 '<(PRODUCT_DIR)/First Run',
532 'action': ['python', '../build/cp.py', '<@(_inputs)', '<@(_outputs)'],
533 'message': 'Copy first run complete sentinel file',
536 'action_name': 'chrome_exe_manifest',
538 'app/version_assembly/chrome_exe_manifest_action.gypi',
542 'action_name': 'version_assembly_manifest',
544 'app/version_assembly/version_assembly_manifest_action.gypi',
550 'app/client_util.cc',
553 ['OS=="win" and component=="shared_library"', {
554 'defines': ['COMPILE_CONTENT_STATICALLY'],
563 'target_name': 'image_pre_reader',
564 'type': 'static_library',
566 'app/image_pre_reader_win.cc',
567 'app/image_pre_reader_win.h',
570 '../base/base.gyp:base',
575 ['disable_nacl!=1 and target_arch=="ia32"', {
578 'target_name': 'chrome_nacl_win64',
579 'type': 'executable',
580 'product_name': 'nacl64',
582 '../content/app/startup_helper_win.cc',
583 '../content/common/sandbox_init_win.cc',
584 '../content/common/sandbox_win.cc',
585 '../content/public/common/content_switches.cc',
586 '../content/public/common/sandboxed_process_launcher_delegate.cc',
587 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/nacl64_exe_version.rc',
588 'app/chrome_crash_reporter_client.cc',
589 'common/crash_keys.cc',
590 'nacl/nacl_exe_win_64.cc',
593 'chrome_version_resources',
594 'installer_util_nacl_win64',
595 '../base/base.gyp:base_i18n_nacl_win64',
596 '../base/base.gyp:base_win64',
597 '../base/base.gyp:base_static_win64',
598 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations_win64',
599 '../breakpad/breakpad.gyp:breakpad_handler_win64',
600 '../breakpad/breakpad.gyp:breakpad_sender_win64',
601 '../components/components.gyp:breakpad_win64',
602 '../chrome/common_constants.gyp:common_constants_win64',
603 '../components/nacl.gyp:nacl_win64',
604 '../crypto/crypto.gyp:crypto_nacl_win64',
605 '../ipc/ipc.gyp:ipc_win64',
606 '../sandbox/sandbox.gyp:sandbox_win64',
609 '<@(nacl_win64_defines)',
610 'COMPILE_CONTENT_STATICALLY',
613 '<(SHARED_INTERMEDIATE_DIR)/chrome',
617 'ImportLibrary': '$(OutDir)\\lib\\nacl64_exe.lib',
618 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
623 'msvs_target_platform': 'x64',
627 ['configuration_policy==1', {
629 '<(DEPTH)/components/components.gyp:policy_win64',
635 }, { # else (disable_nacl==1)
638 'target_name': 'chrome_nacl_win64',
646 ['test_isolation_mode != "noop"', {
649 'target_name': 'chrome_run',
653 # Runtime dependencies
654 '../third_party/mesa/mesa.gyp:osmesa',
657 '../build/isolate.gypi',