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/features.gni")
6 import("//build/config/locales.gni")
7 import("//build/config/ui.gni")
8 import("//chrome/chrome_repack_locales.gni")
9 import("//chrome/version.gni")
12 import("//build/config/android/rules.gni")
16 # TODO(GYP) for Windows need to the the reorder-imports step which probably
17 # means adding another target and renaming this to chrome_initial like in GYP.
18 executable("chrome") {
19 # Because the sources list varies so significantly per-platform, generally
20 # each platform lists its own files rather than relying on filtering or
21 # removing unused files.
23 "app/chrome_exe_resource.h",
28 # TODO(GYP) mac_bundle_resources, xcode_settings
30 # TODO(GYP) order_profiling, order_text_section
34 "$target_gen_dir/chrome_exe_version.rc",
35 "//content/app/startup_helper_win.cc",
36 "//content/public/common/content_switches.cc",
37 "app/chrome_crash_reporter_client.cc",
38 "app/chrome_crash_reporter_client.h",
40 "app/chrome_exe_main_win.cc",
41 "app/chrome_watcher_client_win.cc",
42 "app/chrome_watcher_client_win.h",
43 "app/chrome_watcher_command_line_win.cc",
44 "app/chrome_watcher_command_line_win.h",
47 "app/signature_validator_win.cc",
48 "app/signature_validator_win.h",
49 "common/crash_keys.cc",
50 "common/crash_keys.h'",
53 ":chrome_version_resources",
57 # 'chrome_nacl_win64" TODO(GYP)
58 # '../win8/delegate_execute/delegate_execute.gyp:*', TODO(GYP)
59 # '../win8/metro_driver/metro_driver.gyp:metro_driver', TODO(GYP)
61 "//breakpad:breakpad_handler",
62 "//breakpad:breakpad_sender",
63 "//chrome/browser:chrome_process_finder",
64 "//chrome/chrome_watcher",
65 "//chrome/chrome_watcher:client",
66 "//chrome/installer/util",
68 "//components/browser_watcher:browser_watcher_client",
69 "//components/crash/app",
78 configs -= [ "//build/config/win:console" ]
79 configs += [ "//build/config/win:windowed" ]
80 } else if (use_aura) {
81 # Non-Windows aura entrypoint.
82 sources += [ "app/chrome_exe_main_aura.cc" ]
87 "app/chrome_dll_resource.h",
89 "app/chrome_main_delegate.cc",
90 "app/chrome_main_delegate.h",
94 # On Linux, link the dependencies (libraries) that make up actual
95 # Chromium functionality directly into the executable.
96 ":browser_dependencies",
97 ":child_dependencies",
101 # Needed to use the master_preferences functions
102 "//chrome/installer/util",
103 "//content/public/app:both",
106 # Needed for chrome_main.cc initialization of libraries.
107 configs += [ "//build/config/linux:pangocairo" ]
109 # TODO(GYP) ['profiling==0 and linux_disable_pie==0', {
117 "//build/config/linux:x11",
118 "//build/config/linux:xext",
124 sources += [ "app/chrome_exe_main_mac.cc" ]
125 # TODO(GYP) lots more stuff in the is_mac block.
128 ":packed_extra_resources",
130 "//components/startup_metric_utils",
132 # Precompiled plugins that need to get copied to the output directory.
133 # On Mac, internal plugins go inside the framework, so these
134 # dependencies are on chrome.dll.
135 "//third_party/adobe/flash:flapper_binaries",
136 "//third_party/widevine/cdm:adapter",
138 # TODO(GYP) some stuff from GYP including chrome_multiple_dll.
141 if (is_linux && enable_plugins) {
147 shared_library("main_dll") {
148 configs += [ "//build/config/compiler:wexit_time_destructors" ]
151 ":browser_dependencies",
155 output_name = "chrome"
158 "//base/win/dllmain.cc",
159 "app/chrome_command_ids.h",
161 "app/chrome_dll_resource.h",
162 "app/chrome_main.cc",
163 "app/chrome_main_delegate.cc",
164 "app/chrome_main_delegate.h",
165 "app/close_handle_hook_win.cc",
166 "app/close_handle_hook_win.h",
167 "app/delay_load_hook_win.cc",
168 "app/delay_load_hook_win.h",
172 # On Windows, link the dependencies (libraries) that make up actual
173 # Chromium functionality into this .dll.
174 ":chrome_version_resources",
175 "//chrome/app/theme:chrome_unscaled_resources",
177 "//content/app/resources",
179 "//net:net_resources",
183 if (enable_configuration_policy) {
184 deps += [ "//components/policy" ]
186 if (current_cpu == "x86") {
187 # Add a dependency to custom import library for user32 delay imports only
189 #deps += [ 'chrome_user32_delay_imports' ] TODO(GYP)
192 # TODO(GYP) incremental linking flags in debug builds
193 #'LinkIncremental': '<(msvs_large_module_debug_link_mode)',
195 # TODO(GYP) Lots of VCLinkerTool stuff on Windows.
197 # TODO(GYP) chrome_pgo_phase on Windows.
201 deps += [ "//ui/compositor" ]
204 #TODO(GYP) add chrome_multiple_dll support
205 if (false) { #chrome_multiple_dll) {
206 defines = [ "CHROME_MULTIPLE_DLL_BROWSER" ]
207 deps += [ "//content/public/app:browser" ]
210 ":child_dependencies",
211 "//content/public/app:both",
215 if (cld_version == 0 || cld_version == 2) {
216 deps += [ "//third_party/cld_2" ]
220 #['OS=="mac" and component!="shared_library"', { TODO(GYP)
221 # 'includes': [ 'chrome_dll_bundle.gypi' ],
223 # TODO(GYP) Lots of other stuff in the OS=="mac" block.
226 if (enable_plugins) {
231 # GYP version: chromium_browser_dependencies variable in chrome.gyp
232 group("browser_dependencies") {
239 deps += [ "//ppapi/host" ]
242 if (enable_basic_printing || enable_print_preview) {
243 deps += [ "//printing" ]
244 if (enable_print_preview) {
245 deps += [ "//chrome/service" ]
250 # GYP version: chromium_child_dependencies variable in chrome.gyp
251 group("child_dependencies") {
258 "//chrome/browser/devtools",
263 "//content/public/child",
264 "//third_party/WebKit/public:blink_devtools_frontend_resources",
267 if (cld_version == 0 || cld_version == 2) {
268 deps += [ "//third_party/cld_2:cld2_platform_impl" ]
272 deps += [ "//components/nacl/renderer/plugin:nacl_trusted_plugin" ]
274 if (enable_remoting) {
275 deps += [ "//remoting/client/plugin" ]
280 # TODO(brettw) this duplicates "//chrome/common:version" which applies to
282 process_version("version_header") {
283 # TODO(brettW) this should have more reduced visibility, but chrome/browser
284 # currently depends on this.
285 #visibility = [ ":*" ]
287 # This one just uses the custom template and no separate sources.
289 template_file = "version.h.in"
291 # TODO(brettw) this should move to $target_gen_dir/version.h and
292 # source files including it should reference it via "chrome/version.h"
293 output = "$root_gen_dir/version.h"
296 process_version("chrome_exe_version") {
298 "app/chrome_exe.ver",
300 output = "$target_gen_dir/chrome_exe_version.rc"
303 process_version("chrome_dll_version") {
305 "app/chrome_dll.ver",
307 output = "$target_gen_dir/chrome_dll_version.rc"
310 process_version("nacl64_exe_version") {
312 "app/nacl64_exe.ver",
314 output = "$target_gen_dir/nacl64_exe_version.rc"
317 process_version("other_version") {
321 output = "$target_gen_dir/other_version.rc"
324 group("chrome_version_resources") {
326 ":chrome_exe_version",
327 ":chrome_dll_version",
328 ":nacl64_exe_version",
333 source_set("image_pre_reader") {
335 "app/image_pre_reader_win.cc",
336 "app/image_pre_reader_win.h",
344 # GYP version: chrome/chrome_resources.gyp:chrome_resources
347 # Note: GYP lists some dependencies in addition to these actions. However,
348 # these are just dependencies for the actions themselves, which our actions
349 # list individually when needed.
350 "//chrome/browser:resources",
351 "//chrome/common:resources",
352 "//chrome/renderer:resources",
355 if (enable_extensions) {
356 deps += [ "//chrome/common:extensions_api_resources" ]
360 # GYP version: chrome/chrome_resources.gyp:chrome_extra_resources
361 group("extra_resources") {
363 "//chrome/browser/resources:invalidations_resources",
364 "//chrome/browser/resources:memory_internals_resources",
365 "//chrome/browser/resources:net_internals_resources",
366 "//chrome/browser/resources:password_manager_internals_resources",
367 "//chrome/browser/resources:signin_internals_resources",
368 "//chrome/browser/resources:sync_internals_resources",
369 "//chrome/browser/resources:translate_internals_resources",
373 "//chrome/browser/resources:component_extension_resources",
374 "//chrome/browser/resources:options_resources",
378 if (enable_chromevox_next) {
380 #'browser/resources/chromeos/chromevox2/chromevox.gyp:chromevox2', TODO(GYP)
384 #'browser/resources/chromeos/chromevox/chromevox.gyp:chromevox', TODO(GYP)
388 if (enable_extensions) {
390 "//chrome/browser/resources:quota_internals_resources",
391 "//chrome/browser/resources:sync_file_system_internals_resources",
396 if (is_chrome_branded) {
397 copy("default_apps") {
398 visibility = [ ":packed_resources" ]
400 "browser/resources/default_apps/docs.crx",
401 "browser/resources/default_apps/drive.crx",
402 "browser/resources/default_apps/external_extensions.json",
403 "browser/resources/default_apps/gmail.crx",
404 "browser/resources/default_apps/search.crx",
405 "browser/resources/default_apps/youtube.crx",
408 "$root_out_dir/default_apps/{{source_file_part}}",
413 group("packed_resources") {
415 ":repack_locales_pack",
416 ":repack_pseudo_locales_pack",
417 ":repack_chrome_100_percent",
420 if (is_chrome_branded) {
421 deps += [ ":default_apps" ]
425 deps += [ ":repack_chrome_200_percent" ]
429 repack("packed_extra_resources") {
430 visibility = [ "./*" ]
432 "$root_gen_dir/chrome/browser_resources.pak",
433 "$root_gen_dir/chrome/chrome_unscaled_resources.pak",
434 "$root_gen_dir/chrome/common_resources.pak",
435 "$root_gen_dir/chrome/invalidations_resources.pak",
436 "$root_gen_dir/chrome/memory_internals_resources.pak",
437 "$root_gen_dir/chrome/net_internals_resources.pak",
438 "$root_gen_dir/chrome/password_manager_internals_resources.pak",
439 "$root_gen_dir/chrome/signin_internals_resources.pak",
440 "$root_gen_dir/chrome/sync_internals_resources.pak",
441 "$root_gen_dir/chrome/translate_internals_resources.pak",
442 "$root_gen_dir/components/components_resources.pak",
443 "$root_gen_dir/net/net_resources.pak",
444 "$root_gen_dir/ui/resources/webui_resources.pak",
447 "//chrome/browser:resources",
448 "//chrome/app/theme:chrome_unscaled_resources",
449 "//chrome/common:resources",
450 "//chrome/browser/resources:invalidations_resources",
451 "//chrome/browser/resources:memory_internals_resources",
452 "//chrome/browser/resources:net_internals_resources",
453 "//chrome/browser/resources:password_manager_internals_resources",
454 "//chrome/browser/resources:signin_internals_resources",
455 "//chrome/browser/resources:sync_internals_resources",
456 "//chrome/browser/resources:translate_internals_resources",
457 "//components/resources",
458 "//net:net_resources",
462 if (!is_ios && !is_android) {
463 # New paks should be added here by default.
465 "$root_gen_dir/blink/devtools_resources.pak",
466 "$root_gen_dir/chrome/component_extension_resources.pak",
467 "$root_gen_dir/chrome/options_resources.pak",
468 "$root_gen_dir/chrome/quota_internals_resources.pak",
469 "$root_gen_dir/chrome/sync_file_system_internals_resources.pak",
470 "$root_gen_dir/chrome/webrtc_device_provider_resources.pak",
473 "//chrome/browser/devtools:webrtc_device_provider_resources",
474 "//chrome/browser/resources:component_extension_resources",
475 "//chrome/browser/resources:options_resources",
476 "//chrome/browser/resources:quota_internals_resources",
477 "//chrome/browser/resources:sync_file_system_internals_resources",
478 "//content/browser/devtools:devtools_resources",
483 "$root_gen_dir/blink/public/resources/blink_resources.pak",
484 "$root_gen_dir/content/browser/tracing/tracing_resources.pak",
485 "$root_gen_dir/content/content_resources.pak",
489 sources += [ "$root_gen_dir/ui/file_manager/file_manager_resources.pak" ]
490 sources += [ "$root_gen_dir/ui/oobe/oobe_resources.pak" ]
491 deps += [ "//ui/file_manager:resources" ]
492 deps += [ "//ui/oobe:resources" ]
494 if (enable_extensions) {
496 "$root_gen_dir/chrome/extensions_api_resources.pak",
497 "$root_gen_dir/extensions/extensions_renderer_resources.pak",
498 "$root_gen_dir/extensions/extensions_resources.pak",
500 deps += [ "//chrome/common:extensions_api_resources" ]
503 # GYP outputs the file in the gen/repack directory. On non-Mac/iOS platforms
504 # it them copies it. This skipes the copy step and writes it to the final
506 if (is_mac || is_ios) {
507 output = "$root_gen_dir/repack/resources.pak"
509 output = "$root_out_dir/resources.pak"
513 # GYP version: chrome/chrome_resources.gyp:browser_tests_pak
514 repack("browser_tests_pak") {
516 "$root_gen_dir/chrome/options_test_resources.pak",
518 output = "$root_out_dir/browser_tests.pak"
521 # Collects per-locale grit files from many sources into global per-locale files.
522 chrome_repack_locales("repack_locales_pack") {
523 visibility = [ ":*" ]
525 input_locales = locales
528 output_locales = locales_as_mac_outputs
530 output_locales = locales
534 chrome_repack_locales("repack_pseudo_locales_pack") {
535 visibility = [ ":*" ]
537 input_locales = [ "fake-bidi" ]
540 output_locales = [ "fake_bidi" ] # Mac uses underscores.
542 output_locales = [ "fake-bidi" ]
546 # Generates a rule to repack a set of resources, substituting a given string
547 # in for the percentage (e.g. "100", "200"). It generates the repacked files in
548 # the "gen" directory, and then introduces a copy rule to copy it to the root
551 # It's not clear why this two-step dance is necessary as opposed to just
552 # generating the file in the destination. However, this is what the GYP build
553 # does, and for maintenance purposes, this keeps the same files in the same
554 # place between the two builds when possible.
558 # String to substitute for the percentage.
559 template("chrome_repack_percent") {
560 percent = invoker.percent
562 repack_name = "${target_name}_repack"
563 repack_output_file = "$root_gen_dir/repack/chrome_${percent}_percent.pak"
565 copy_name = target_name
567 repack(repack_name) {
568 visibility = [ ":$copy_name" ]
570 # All sources should also have deps for completeness.
572 "$root_gen_dir/chrome/renderer_resources_${percent}_percent.pak",
573 "$root_gen_dir/chrome/theme_resources_${percent}_percent.pak",
574 "$root_gen_dir/components/components_resources_${percent}_percent.pak",
575 "$root_gen_dir/ui/resources/ui_resources_${percent}_percent.pak",
579 "//chrome/app/theme:theme_resources",
580 "//chrome/renderer:resources",
581 "//components/strings",
582 "//net:net_resources",
586 sources += [ "$root_gen_dir/content/app/resources/content_resources_${percent}_percent.pak" ]
587 deps += [ "//content:resources" ]
591 [ "$root_gen_dir/ash/resources/ash_resources_${percent}_percent.pak" ]
592 deps += [ "//ash/resources" ]
595 sources += [ "$root_gen_dir/ui/chromeos/resources/ui_chromeos_resources_${percent}_percent.pak" ]
596 deps += [ "//ui/chromeos/resources" ]
598 if (enable_extensions) {
599 sources += [ "$root_gen_dir/extensions/extensions_browser_resources_${percent}_percent.pak" ]
602 output = repack_output_file
606 visibility = [ ":*" ]
614 "$root_build_dir/chrome_${percent}_percent.pak",
619 chrome_repack_percent("repack_chrome_100_percent") {
624 chrome_repack_percent("repack_chrome_200_percent") {
629 # GYP version: chrome/chrome_resources.gyp:chrome_strings
632 "//chrome/app:chromium_strings",
633 "//chrome/app:generated_resources",
634 "//chrome/app:google_chrome_strings",
635 "//chrome/app/resources:locale_settings",
640 # GYP: //chrome/chrome.gyp:content_setting_java
641 java_cpp_enum("content_setting_javagen") {
643 "../components/content_settings/core/common/content_settings.h",
646 "org/chromium/chrome/browser/ContentSetting.java",
650 # GYP: //chrome/chrome.gyp:content_settings_type_java
651 java_cpp_enum("content_settings_type_javagen") {
653 "../components/content_settings/core/common/content_settings_types.h",
656 "org/chromium/chrome/browser/ContentSettingsType.java",
660 # GYP: //chrome/chrome.gyp:page_info_connection_type_java
661 java_cpp_enum("page_info_connection_type_javagen") {
663 "browser/ui/android/website_settings_popup_android.h",
666 "org/chromium/chrome/browser/PageInfoConnectionType.java",
670 # GYP: //chrome/chrome_android.gypi:chrome_android_core
671 static_library("chrome_android_core") {
673 "app/android/chrome_android_initializer.cc",
674 "app/android/chrome_android_initializer.h",
675 "app/android/chrome_jni_onload.cc",
676 "app/android/chrome_jni_onload.h",
677 "app/android/chrome_main_delegate_android.cc",
678 "app/android/chrome_main_delegate_android.h",
679 "app/chrome_main_delegate.cc",
680 "app/chrome_main_delegate.h",
683 include_dirs = [ android_ndk_include_dir ]
692 "//chrome/browser/ui",
697 "//components/enhanced_bookmarks",
698 "//content/public/app:both",
705 if (is_chrome_branded) {
706 name = "Google Chrome"
707 filename = "google-chrome"
708 confdir = "google-chrome"
711 filename = "chromium-browser"
715 script = "//chrome/tools/build/linux/sed.py"
716 infile = "app/resources/manpage.1.in"
721 outfile = "$root_out_dir/chrome.1"
727 rebase_path(infile, root_build_dir),
728 rebase_path(outfile, root_build_dir),
729 "-e s/@@NAME@@/$name/",
730 "-e s/@@FILENAME@@/$filename/",
731 "-e s/@@CONFDIR@@/$confdir/",