1 # Copyright 2014 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 import("//build/config/chrome_build.gni")
6 import("//build/config/features.gni")
7 import("//build/config/locales.gni")
8 import("//build/config/ui.gni")
9 import("//build/config/win/manifest.gni")
10 import("//chrome/chrome_repack_locales.gni")
11 import("//chrome/version.gni")
14 import("//build/config/android/rules.gni")
18 # TODO(GYP) bug 512599: for Windows need to the the reorder-imports step
19 # which probably means adding another target and renaming this to
20 # chrome_initial like in GYP.
21 executable("chrome") {
22 # Because the sources list varies so significantly per-platform, generally
23 # each platform lists its own files rather than relying on filtering or
24 # removing unused files.
26 "app/chrome_exe_resource.h",
32 # TODO(GYP) mac_bundle_resources, xcode_settings
36 "//content/public/common/content_switches.cc",
37 "//content/public/common/content_switches.h",
38 "app/chrome_crash_reporter_client.cc",
39 "app/chrome_crash_reporter_client.h",
41 "app/chrome_exe_load_config_win.cc",
42 "app/chrome_exe_main_win.cc",
43 "app/chrome_watcher_client_win.cc",
44 "app/chrome_watcher_client_win.h",
45 "app/chrome_watcher_command_line_win.cc",
46 "app/chrome_watcher_command_line_win.h",
49 "app/kasko_client.cc",
51 "app/signature_validator_win.cc",
52 "app/signature_validator_win.h",
53 "common/crash_keys.cc",
54 "common/crash_keys.h",
57 if (is_component_build) {
58 # This is necessary to make content_switches compile without DLL
59 # linkage errors in a component build.
60 defines += [ "COMPILE_CONTENT_STATICALLY" ]
64 ":chrome_exe_version",
68 # 'chrome_nacl_win64" TODO(GYP) bug 512869
69 # '../win8/delegate_execute/delegate_execute.gyp:*', TODO(GYP) bug 512867
70 # '../win8/metro_driver/metro_driver.gyp:metro_driver', TODO(GYP) bug 512864
72 "//breakpad:breakpad_handler",
73 "//breakpad:breakpad_sender",
74 "//chrome/app/version_assembly:chrome_exe_manifest",
75 "//chrome/browser:chrome_process_finder",
76 "//chrome/chrome_watcher",
77 "//chrome/chrome_watcher:client",
78 "//chrome/installer/util",
80 "//components/browser_watcher:browser_watcher_client",
81 "//components/crash/app",
82 "//content:startup_helper_win",
87 data_deps = [ "//chrome/app/version_assembly:version_assembly_manifest" ]
93 configs -= [ "//build/config/win:console" ]
94 configs += [ "//build/config/win:windowed" ]
95 } else if (use_aura) {
96 # Non-Windows aura entrypoint.
97 sources += [ "app/chrome_exe_main_aura.cc" ]
102 "app/chrome_dll_resource.h",
103 "app/chrome_main.cc",
104 "app/chrome_main_delegate.cc",
105 "app/chrome_main_delegate.h",
109 # On Linux, link the dependencies (libraries) that make up actual
110 # Chromium functionality directly into the executable.
111 ":browser_dependencies",
112 ":child_dependencies",
116 # Needed to use the master_preferences functions
117 "//chrome/installer/util",
118 "//content/public/app:both",
121 # Needed for chrome_main.cc initialization of libraries.
122 configs += [ "//build/config/linux:pangocairo" ]
124 # GYP has this in a 'profiling==0 and linux_disable_pie==0' condition.
125 # but GN doesn't have either of these flags.
130 "//build/config/linux:x11",
131 "//build/config/linux:xext",
137 sources += [ "app/chrome_exe_main_mac.cc" ]
138 # TODO(GYP) lots more stuff in the is_mac block.
141 ":packed_extra_resources",
143 "//components/startup_metric_utils",
145 # Precompiled plugins that need to get copied to the output directory.
146 # On Mac, internal plugins go inside the framework, so these
147 # dependencies are on chrome.dll.
148 "//third_party/adobe/flash:flapper_binaries",
149 "//third_party/widevine/cdm:widevinecdmadapter",
153 if (is_linux && enable_plugins) {
157 if (is_multi_dll_chrome) {
158 defines += [ "CHROME_MULTIPLE_DLL" ]
159 data_deps += [ ":chrome_child" ]
164 shared_library("main_dll") {
165 configs += [ "//build/config/compiler:wexit_time_destructors" ]
169 ":browser_dependencies",
173 output_name = "chrome"
176 "//base/win/dllmain.cc",
177 "app/chrome_command_ids.h",
179 "app/chrome_dll_resource.h",
180 "app/chrome_main.cc",
181 "app/chrome_main_delegate.cc",
182 "app/chrome_main_delegate.h",
183 "app/close_handle_hook_win.cc",
184 "app/close_handle_hook_win.h",
185 "app/delay_load_hook_win.cc",
186 "app/delay_load_hook_win.h",
190 ":chrome_dll_manifest",
191 ":chrome_dll_version",
192 "//base/trace_event/etw_manifest:chrome_events_win",
193 "//chrome/app/theme:chrome_unscaled_resources",
195 "//content/app/resources",
197 "//net:net_resources",
201 if (enable_configuration_policy) {
202 deps += [ "//components/policy" ]
204 if (current_cpu == "x86") {
205 # TODO(GYP) bug 512861: Lots of VCLinkerTool stuff on Windows.
206 #deps += [ 'chrome_user32_delay_imports' ] TODO(GYP)
209 # This is a large module that can't do incremental linking in some cases.
210 configs -= [ "//build/config/win:default_incremental_linking" ]
211 configs += [ "//build/config/win:default_large_module_incremental_linking" ]
213 # TODO(GYP) bug 512851: PGO.
217 deps += [ "//ui/compositor" ]
220 if (is_multi_dll_chrome) {
221 defines += [ "CHROME_MULTIPLE_DLL_BROWSER" ]
222 deps += [ "//content/public/app:browser" ]
225 ":child_dependencies",
226 "//content/public/app:both",
230 if (cld_version == 2) {
231 deps += [ "//third_party/cld_2" ]
235 #['OS=="mac" and component!="shared_library"', { TODO(GYP)
236 # 'includes': [ 'chrome_dll_bundle.gypi' ],
238 # TODO(GYP) Lots of other stuff in the OS=="mac" block.
241 if (enable_plugins && !is_multi_dll_chrome) {
246 if (is_multi_dll_chrome) {
247 # This manifest matches what GYP produces. It may not even be necessary.
248 windows_manifest("chrome_child_manifest") {
255 shared_library("chrome_child") {
257 "app/chrome_main.cc",
258 "app/chrome_main_delegate.cc",
259 "app/chrome_main_delegate.h",
260 "app/close_handle_hook_win.cc",
261 "app/close_handle_hook_win.h",
264 configs += [ "//build/config/compiler:wexit_time_destructors" ]
265 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ]
268 ":child_dependencies",
269 ":chrome_child_manifest",
270 ":chrome_dll_version",
272 "//chrome/browser/policy:path_parser",
273 "//content/public/app:child",
277 # TODO(GYP) bug 512851: PGO on Windows.
278 # ['chrome_pgo_phase==1', {
281 # 'LinkTimeCodeGeneration': '2',
285 # ['chrome_pgo_phase==2', {
288 # 'LinkTimeCodeGeneration': '3',
293 if (enable_plugins) {
299 # GYP version: chromium_browser_dependencies variable in chrome.gyp
300 group("browser_dependencies") {
307 deps += [ "//ppapi/host" ]
310 if (enable_basic_printing || enable_print_preview) {
311 deps += [ "//printing" ]
312 if (enable_print_preview) {
313 deps += [ "//chrome/service" ]
318 # GYP version: chromium_child_dependencies variable in chrome.gyp
319 group("child_dependencies") {
326 "//chrome/browser/devtools",
331 "//content/public/child",
332 "//third_party/WebKit/public:blink_devtools_frontend_resources",
335 if (cld_version == 2) {
336 deps += [ "//third_party/cld_2:cld2_platform_impl" ]
340 deps += [ "//components/nacl/renderer/plugin:nacl_trusted_plugin" ]
342 if (enable_remoting) {
343 deps += [ "//remoting/client/plugin" ]
348 # TODO(brettw) this duplicates "//chrome/common:version" which applies to
350 process_version("version_header") {
351 # TODO(brettW) this should have more reduced visibility, but chrome/browser
352 # currently depends on this.
353 #visibility = [ ":*" ]
355 # This one just uses the custom template and no separate sources.
357 template_file = "version.h.in"
359 # TODO(brettw) this should move to $target_gen_dir/version.h and
360 # source files including it should reference it via "chrome/version.h"
361 output = "$root_gen_dir/version.h"
364 process_version("chrome_exe_version") {
366 "app/chrome_exe.ver",
368 output = "$target_gen_dir/chrome_exe_version.rc"
371 process_version("chrome_dll_version") {
373 "app/chrome_dll.ver",
375 output = "$target_gen_dir/chrome_dll_version.rc"
378 # This manifest matches what GYP produces. It may not even be necessary.
379 windows_manifest("chrome_dll_manifest") {
382 common_controls_manifest,
387 process_version("nacl64_exe_version") {
389 "app/nacl64_exe.ver",
391 output = "$target_gen_dir/nacl64_exe_version.rc"
394 process_version("other_version") {
398 output = "$target_gen_dir/other_version.rc"
401 source_set("image_pre_reader") {
403 "app/image_pre_reader_win.cc",
404 "app/image_pre_reader_win.h",
412 # GYP version: chrome/chrome_resources.gyp:chrome_resources
415 # Note: GYP lists some dependencies in addition to these actions. However,
416 # these are just dependencies for the actions themselves, which our actions
417 # list individually when needed.
418 "//chrome/browser:resources",
419 "//chrome/common:resources",
420 "//chrome/renderer:resources",
423 if (enable_extensions) {
424 deps += [ "//chrome/common:extensions_api_resources" ]
428 # GYP version: chrome/chrome_resources.gyp:chrome_extra_resources
429 group("extra_resources") {
431 "//chrome/browser/resources:invalidations_resources",
432 "//chrome/browser/resources:memory_internals_resources",
433 "//chrome/browser/resources:net_internals_resources",
434 "//chrome/browser/resources:password_manager_internals_resources",
435 "//chrome/browser/resources:signin_internals_resources",
436 "//chrome/browser/resources:sync_internals_resources",
437 "//chrome/browser/resources:translate_internals_resources",
441 "//chrome/browser/resources:component_extension_resources",
442 "//chrome/browser/resources:options_resources",
443 "//chrome/browser/resources:settings_resources",
448 deps += [ "//chrome/browser/resources/chromeos/chromevox" ]
451 if (enable_extensions) {
453 "//chrome/browser/resources:quota_internals_resources",
454 "//chrome/browser/resources:sync_file_system_internals_resources",
459 if (is_chrome_branded) {
460 copy("default_apps") {
461 visibility = [ ":packed_resources" ]
463 "browser/resources/default_apps/docs.crx",
464 "browser/resources/default_apps/drive.crx",
465 "browser/resources/default_apps/external_extensions.json",
466 "browser/resources/default_apps/gmail.crx",
467 "browser/resources/default_apps/search.crx",
468 "browser/resources/default_apps/youtube.crx",
471 "$root_out_dir/default_apps/{{source_file_part}}",
476 group("packed_resources") {
478 ":repack_locales_pack",
479 ":repack_pseudo_locales_pack",
480 ":repack_chrome_100_percent",
483 if (is_chrome_branded) {
484 deps += [ ":default_apps" ]
488 deps += [ ":repack_chrome_200_percent" ]
491 if (enable_topchrome_md) {
492 deps += [ ":repack_chrome_material_100_percent" ]
495 deps += [ ":repack_chrome_material_200_percent" ]
500 repack("packed_extra_resources") {
501 visibility = [ "./*" ]
503 "$root_gen_dir/chrome/browser_resources.pak",
504 "$root_gen_dir/chrome/chrome_unscaled_resources.pak",
505 "$root_gen_dir/chrome/common_resources.pak",
506 "$root_gen_dir/chrome/invalidations_resources.pak",
507 "$root_gen_dir/chrome/memory_internals_resources.pak",
508 "$root_gen_dir/chrome/net_internals_resources.pak",
509 "$root_gen_dir/chrome/password_manager_internals_resources.pak",
510 "$root_gen_dir/chrome/signin_internals_resources.pak",
511 "$root_gen_dir/chrome/sync_internals_resources.pak",
512 "$root_gen_dir/chrome/translate_internals_resources.pak",
513 "$root_gen_dir/components/components_resources.pak",
514 "$root_gen_dir/net/net_resources.pak",
515 "$root_gen_dir/ui/resources/webui_resources.pak",
518 "//chrome/browser:resources",
519 "//chrome/app/theme:chrome_unscaled_resources",
520 "//chrome/common:resources",
521 "//chrome/browser/resources:invalidations_resources",
522 "//chrome/browser/resources:memory_internals_resources",
523 "//chrome/browser/resources:net_internals_resources",
524 "//chrome/browser/resources:password_manager_internals_resources",
525 "//chrome/browser/resources:signin_internals_resources",
526 "//chrome/browser/resources:sync_internals_resources",
527 "//chrome/browser/resources:translate_internals_resources",
528 "//components/resources",
529 "//net:net_resources",
533 if (!is_ios && !is_android) {
534 # New paks should be added here by default.
536 "$root_gen_dir/blink/devtools_resources.pak",
537 "$root_gen_dir/chrome/component_extension_resources.pak",
538 "$root_gen_dir/chrome/options_resources.pak",
539 "$root_gen_dir/chrome/quota_internals_resources.pak",
540 "$root_gen_dir/chrome/settings_resources.pak",
541 "$root_gen_dir/chrome/sync_file_system_internals_resources.pak",
542 "$root_gen_dir/chrome/webrtc_device_provider_resources.pak",
545 "//chrome/browser/devtools:webrtc_device_provider_resources",
546 "//chrome/browser/resources:component_extension_resources",
547 "//chrome/browser/resources:options_resources",
548 "//chrome/browser/resources:settings_resources",
549 "//chrome/browser/resources:quota_internals_resources",
550 "//chrome/browser/resources:sync_file_system_internals_resources",
551 "//content/browser/devtools:devtools_resources",
556 "$root_gen_dir/blink/public/resources/blink_resources.pak",
557 "$root_gen_dir/content/browser/tracing/tracing_resources.pak",
558 "$root_gen_dir/content/content_resources.pak",
561 "//content:resources",
562 "//content/browser/tracing:resources",
563 "//third_party/WebKit/public:resources",
567 sources += [ "$root_gen_dir/ui/file_manager/file_manager_resources.pak" ]
568 deps += [ "//ui/file_manager:resources" ]
570 if (enable_extensions) {
572 "$root_gen_dir/chrome/extensions_api_resources.pak",
573 "$root_gen_dir/extensions/extensions_renderer_resources.pak",
574 "$root_gen_dir/extensions/extensions_resources.pak",
577 "//chrome/common:extensions_api_resources",
578 "//extensions:extensions_resources",
582 # GYP outputs the file in the gen/repack directory. On non-Mac/iOS platforms
583 # it them copies it. This skipes the copy step and writes it to the final
585 if (is_mac || is_ios) {
586 output = "$root_gen_dir/repack/resources.pak"
588 output = "$root_out_dir/resources.pak"
592 # GYP version: chrome/chrome_resources.gyp:browser_tests_pak
593 repack("browser_tests_pak") {
595 "$root_gen_dir/chrome/options_test_resources.pak",
596 "$root_gen_dir/chrome/webui_test_resources.pak",
598 output = "$root_out_dir/browser_tests.pak"
600 "//chrome/browser/resources:options_test_resources",
601 "//chrome/test/data:webui_test_resources",
605 # Collects per-locale grit files from many sources into global per-locale files.
606 chrome_repack_locales("repack_locales_pack") {
607 visibility = [ ":*" ]
609 input_locales = locales
612 output_locales = locales_as_mac_outputs
614 output_locales = locales
618 chrome_repack_locales("repack_pseudo_locales_pack") {
619 visibility = [ ":*" ]
621 input_locales = [ "fake-bidi" ]
624 output_locales = [ "fake_bidi" ] # Mac uses underscores.
626 output_locales = [ "fake-bidi" ]
630 # Generates a rule to repack a set of resources, substituting a given string
631 # in for the percentage (e.g. "100", "200"). It generates the repacked files in
632 # the "gen" directory, and then introduces a copy rule to copy it to the root
635 # It's not clear why this two-step dance is necessary as opposed to just
636 # generating the file in the destination. However, this is what the GYP build
637 # does, and for maintenance purposes, this keeps the same files in the same
638 # place between the two builds when possible.
642 # String to substitute for the percentage.
643 template("chrome_repack_percent") {
644 percent = invoker.percent
646 repack_name = "${target_name}_repack"
647 repack_output_file = "$root_gen_dir/repack/chrome_${percent}_percent.pak"
649 copy_name = target_name
651 repack(repack_name) {
652 visibility = [ ":$copy_name" ]
654 # All sources should also have deps for completeness.
656 "$root_gen_dir/chrome/renderer_resources_${percent}_percent.pak",
657 "$root_gen_dir/chrome/theme_resources_${percent}_percent.pak",
658 "$root_gen_dir/components/components_resources_${percent}_percent.pak",
659 "$root_gen_dir/ui/resources/ui_resources_${percent}_percent.pak",
663 "//chrome/app/theme:theme_resources",
664 "//chrome/renderer:resources",
665 "//components/resources",
666 "//components/strings",
667 "//net:net_resources",
673 "$root_gen_dir/blink/public/resources/blink_image_resources_${percent}_percent.pak",
674 "$root_gen_dir/content/app/resources/content_resources_${percent}_percent.pak",
677 "//content/app/resources",
678 "//third_party/WebKit/public:image_resources",
683 [ "$root_gen_dir/ash/resources/ash_resources_${percent}_percent.pak" ]
684 deps += [ "//ash/resources" ]
687 sources += [ "$root_gen_dir/ui/views/resources/views_resources_${percent}_percent.pak" ]
688 deps += [ "//ui/views/resources" ]
691 sources += [ "$root_gen_dir/ui/chromeos/resources/ui_chromeos_resources_${percent}_percent.pak" ]
692 deps += [ "//ui/chromeos/resources" ]
694 if (enable_extensions) {
695 sources += [ "$root_gen_dir/extensions/extensions_browser_resources_${percent}_percent.pak" ]
696 deps += [ "//extensions:extensions_browser_resources" ]
699 output = repack_output_file
703 visibility = [ ":*" ]
711 "$root_build_dir/chrome_${percent}_percent.pak",
716 chrome_repack_percent("repack_chrome_100_percent") {
721 chrome_repack_percent("repack_chrome_200_percent") {
726 # Generates a rule to repack a set of material design resources for the browser
727 # top chrome, substituting a given string in for the percentage (e.g. "100",
729 template("chrome_repack_material_percent") {
730 percent = invoker.percent
732 repack_name = "${target_name}_repack"
734 "$root_gen_dir/repack/chrome_material_${percent}_percent.pak"
736 copy_name = target_name
738 repack(repack_name) {
739 visibility = [ ":$copy_name" ]
741 # All sources should also have deps for completeness.
743 "$root_gen_dir/chrome/theme_resources_material_${percent}_percent.pak",
747 "//chrome/app/theme:theme_resources",
750 output = repack_output_file
754 visibility = [ ":*" ]
762 "$root_build_dir/chrome_material_${percent}_percent.pak",
767 if (enable_topchrome_md) {
768 chrome_repack_material_percent("repack_chrome_material_100_percent") {
773 chrome_repack_material_percent("repack_chrome_material_200_percent") {
779 # GYP version: chrome/chrome_resources.gyp:chrome_strings
782 "//chrome/app:chromium_strings",
783 "//chrome/app:generated_resources",
784 "//chrome/app:google_chrome_strings",
785 "//chrome/app/resources:locale_settings",
790 # GYP: //chrome/chrome.gyp:content_setting_java
791 java_cpp_enum("content_setting_javagen") {
793 "../components/content_settings/core/common/content_settings.h",
796 "org/chromium/chrome/browser/ContentSetting.java",
800 # GYP: //chrome/chrome.gyp:content_settings_type_java
801 java_cpp_enum("content_settings_type_javagen") {
803 "../components/content_settings/core/common/content_settings_types.h",
806 "org/chromium/chrome/browser/ContentSettingsType.java",
810 # GYP: //chrome/chrome.gyp:page_info_connection_type_java
811 java_cpp_enum("page_info_connection_type_javagen") {
813 "browser/ui/android/website_settings_popup_android.h",
816 "org/chromium/chrome/browser/PageInfoConnectionType.java",
820 # GYP: //chrome/chrome_android.gypi:chrome_android_core
821 static_library("chrome_android_core") {
823 "app/android/chrome_android_initializer.cc",
824 "app/android/chrome_android_initializer.h",
825 "app/android/chrome_jni_onload.cc",
826 "app/android/chrome_jni_onload.h",
827 "app/android/chrome_main_delegate_android.cc",
828 "app/android/chrome_main_delegate_android.h",
829 "app/chrome_main_delegate.cc",
830 "app/chrome_main_delegate.h",
833 include_dirs = [ android_ndk_include_dir ]
842 "//chrome/browser/ui",
847 "//components/enhanced_bookmarks",
848 "//content/public/app:both",
855 if (is_chrome_branded) {
856 name = "Google Chrome"
857 filename = "google-chrome"
858 confdir = "google-chrome"
861 filename = "chromium-browser"
865 script = "//chrome/tools/build/linux/sed.py"
866 infile = "app/resources/manpage.1.in"
871 outfile = "$root_out_dir/chrome.1"
877 rebase_path(infile, root_build_dir),
878 rebase_path(outfile, root_build_dir),
879 "-e s/@@NAME@@/$name/",
880 "-e s/@@FILENAME@@/$filename/",
881 "-e s/@@CONFDIR@@/$confdir/",
885 action("linux_symbols") {
886 script = "//build/linux/dump_app_syms.py"
888 dump_syms_label = "//breakpad:dump_syms($host_toolchain)"
890 get_label_info(dump_syms_label, "root_out_dir") + "/" + "dump_syms"
892 chrome_binary = "$root_out_dir/chrome"
893 if (current_cpu == "x86") {
894 # Use "ia32" instead of "x86" for GYP compat.
895 symbol_file = "$root_out_dir/chrome.breakpad.ia32"
897 symbol_file = "$root_out_dir/chrome.breakpad.$current_cpu"
909 "./" + rebase_path(dump_syms_binary, root_build_dir),
910 "0", # TODO(GYP) This is linux_strip_binary if it is needed.
911 rebase_path(chrome_binary, root_build_dir),
912 rebase_path(symbol_file, root_build_dir),