Remove no longer needed toolbar layer method.
[chromium-blink-merge.git] / chrome / BUILD.gn
blobb8cd7a195d2c33e2036fff786a75d87e997e3f09
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")
11 if (is_android) {
12   import("//build/config/android/rules.gni")
15 if (!is_android) {
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.
22     sources = [
23       "app/chrome_exe_resource.h",
24     ]
25     deps = []
26     datadeps = []
28     # TODO(GYP) mac_bundle_resources, xcode_settings
30     # TODO(GYP) order_profiling, order_text_section
32     if (is_win) {
33       sources += [
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",
39         "app/chrome_exe.rc",
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",
45         "app/client_util.cc",
46         "app/client_util.h",
47         "app/signature_validator_win.cc",
48         "app/signature_validator_win.h",
49         "common/crash_keys.cc",
50         "common/crash_keys.h'",
51       ]
52       deps += [
53         ":chrome_version_resources",
54         ":image_pre_reader",
55         ":main_dll",
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)
60         "//base",
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",
67         "//chrome_elf",
68         "//components/browser_watcher:browser_watcher_client",
69         "//components/crash/app",
70         "//crypto",
71         "//sandbox",
72         "//ui/gfx",
73       ]
74       libs = [
75         "wintrust.lib",
76         "crypt32.lib",
77       ]
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" ]
83     }
85     if (is_linux) {
86       sources += [
87         "app/chrome_dll_resource.h",
88         "app/chrome_main.cc",
89         "app/chrome_main_delegate.cc",
90         "app/chrome_main_delegate.h",
91       ]
93       deps += [
94         # On Linux, link the dependencies (libraries) that make up actual
95         # Chromium functionality directly into the executable.
96         ":browser_dependencies",
97         ":child_dependencies",
98         ":manpage",
99         "//base/allocator",
101         # Needed to use the master_preferences functions
102         "//chrome/installer/util",
103         "//content/public/app:both",
104       ]
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', {
110       #   'ldflags': [
111       #      '-pie',
112       #   ],
113       #}],
115       if (use_x11) {
116         configs += [
117           "//build/config/linux:x11",
118           "//build/config/linux:xext",
119         ]
120       }
121     }
123     if (is_mac) {
124       sources += [ "app/chrome_exe_main_mac.cc" ]
125       # TODO(GYP) lots more stuff in the is_mac block.
126     } else {  # Non-Mac.
127       deps += [
128         ":packed_extra_resources",
129         ":packed_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",
137       ]
138       # TODO(GYP) some stuff from GYP including chrome_multiple_dll.
139     }
141     if (is_linux && enable_plugins) {
142       deps += [ "//pdf" ]
143     }
144   }
145 }  # !is_android
147 shared_library("main_dll") {
148   configs += [ "//build/config/compiler:wexit_time_destructors" ]
150   deps = [
151     ":browser_dependencies",
152     "//base/allocator",
153   ]
154   if (is_win) {
155     output_name = "chrome"
157     sources = [
158       "//base/win/dllmain.cc",
159       "app/chrome_command_ids.h",
160       "app/chrome_dll.rc",
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",
169     ]
171     deps += [
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",
176       "//chrome_elf",
177       "//content/app/resources",
178       "//crypto",
179       "//net:net_resources",
180       "//third_party/wtl",
181       "//ui/views",
182     ]
183     if (enable_configuration_policy) {
184       deps += [ "//components/policy" ]
185     }
186     if (current_cpu == "x86") {
187       # Add a dependency to custom import library for user32 delay imports only
188       # in x86 builds.
189       #deps += [ 'chrome_user32_delay_imports' ]  TODO(GYP)
190     }
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.
198   }
200   if (use_aura) {
201     deps += [ "//ui/compositor" ]
202   }
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" ]
208   } else {
209     deps += [
210       ":child_dependencies",
211       "//content/public/app:both",
212     ]
213   }
215   if (cld_version == 0 || cld_version == 2) {
216     deps += [ "//third_party/cld_2" ]
217   }
219   if (is_mac) {
220     #['OS=="mac" and component!="shared_library"', {  TODO(GYP)
221     #  'includes': [ 'chrome_dll_bundle.gypi' ],
222     #}],
223     # TODO(GYP) Lots of other stuff in the OS=="mac" block.
224   }
226   if (enable_plugins) {
227     deps += [ "//pdf" ]
228   }
231 # GYP version: chromium_browser_dependencies variable in chrome.gyp
232 group("browser_dependencies") {
233   deps = [
234     "//chrome/browser",
235     "//chrome/common",
236     "//sync",
237   ]
238   if (!is_ios) {
239     deps += [ "//ppapi/host" ]
240   }
242   if (enable_basic_printing || enable_print_preview) {
243     deps += [ "//printing" ]
244     if (enable_print_preview) {
245       deps += [ "//chrome/service" ]
246     }
247   }
250 # GYP version: chromium_child_dependencies variable in chrome.gyp
251 group("child_dependencies") {
252   deps = [
253     "//chrome/common",
254     "//sync",
255   ]
256   if (!is_ios) {
257     deps += [
258       "//chrome/browser/devtools",
259       "//chrome/child",
260       "//chrome/plugin",
261       "//chrome/renderer",
262       "//chrome/utility",
263       "//content/public/child",
264       "//third_party/WebKit/public:blink_devtools_frontend_resources",
265     ]
266   }
267   if (cld_version == 0 || cld_version == 2) {
268     deps += [ "//third_party/cld_2:cld2_platform_impl" ]
269   }
271   if (enable_nacl) {
272     deps += [ "//components/nacl/renderer/plugin:nacl_trusted_plugin" ]
273   }
274   if (enable_remoting) {
275     deps += [ "//remoting/client/plugin" ]
276   }
279 if (is_win) {
280   # TODO(brettw) this duplicates "//chrome/common:version" which applies to
281   # Linux.
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.
288     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"
294   }
296   process_version("chrome_exe_version") {
297     sources = [
298       "app/chrome_exe.ver",
299     ]
300     output = "$target_gen_dir/chrome_exe_version.rc"
301   }
303   process_version("chrome_dll_version") {
304     sources = [
305       "app/chrome_dll.ver",
306     ]
307     output = "$target_gen_dir/chrome_dll_version.rc"
308   }
310   process_version("nacl64_exe_version") {
311     sources = [
312       "app/nacl64_exe.ver",
313     ]
314     output = "$target_gen_dir/nacl64_exe_version.rc"
315   }
317   process_version("other_version") {
318     sources = [
319       "app/other.ver",
320     ]
321     output = "$target_gen_dir/other_version.rc"
322   }
324   group("chrome_version_resources") {
325     deps = [
326       ":chrome_exe_version",
327       ":chrome_dll_version",
328       ":nacl64_exe_version",
329       ":other_version",
330     ]
331   }
333   source_set("image_pre_reader") {
334     sources = [
335       "app/image_pre_reader_win.cc",
336       "app/image_pre_reader_win.h",
337     ]
338     deps = [
339       "//base",
340     ]
341   }
344 # GYP version: chrome/chrome_resources.gyp:chrome_resources
345 group("resources") {
346   deps = [
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",
353   ]
355   if (enable_extensions) {
356     deps += [ "//chrome/common:extensions_api_resources" ]
357   }
360 # GYP version: chrome/chrome_resources.gyp:chrome_extra_resources
361 group("extra_resources") {
362   deps = [
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",
370   ]
371   if (!is_ios) {
372     deps += [
373       "//chrome/browser/resources:component_extension_resources",
374       "//chrome/browser/resources:options_resources",
375       "//chrome/browser/resources:settings_resources",
376     ]
377   }
379   if (enable_chromevox_next) {
380     deps += [
381       #'browser/resources/chromeos/chromevox2/chromevox.gyp:chromevox2',  TODO(GYP)
382     ]
383   } else {
384     deps += [
385       #'browser/resources/chromeos/chromevox/chromevox.gyp:chromevox',  TODO(GYP)
386     ]
387   }
389   if (enable_extensions) {
390     deps += [
391       "//chrome/browser/resources:quota_internals_resources",
392       "//chrome/browser/resources:sync_file_system_internals_resources",
393     ]
394   }
397 if (is_chrome_branded) {
398   copy("default_apps") {
399     visibility = [ ":packed_resources" ]
400     sources = [
401       "browser/resources/default_apps/docs.crx",
402       "browser/resources/default_apps/drive.crx",
403       "browser/resources/default_apps/external_extensions.json",
404       "browser/resources/default_apps/gmail.crx",
405       "browser/resources/default_apps/search.crx",
406       "browser/resources/default_apps/youtube.crx",
407     ]
408     outputs = [
409       "$root_out_dir/default_apps/{{source_file_part}}",
410     ]
411   }
414 group("packed_resources") {
415   deps = [
416     ":repack_locales_pack",
417     ":repack_pseudo_locales_pack",
418     ":repack_chrome_100_percent",
419   ]
421   if (is_chrome_branded) {
422     deps += [ ":default_apps" ]
423   }
425   if (enable_hidpi) {
426     deps += [ ":repack_chrome_200_percent" ]
427   }
430 repack("packed_extra_resources") {
431   visibility = [ "./*" ]
432   sources = [
433     "$root_gen_dir/chrome/browser_resources.pak",
434     "$root_gen_dir/chrome/chrome_unscaled_resources.pak",
435     "$root_gen_dir/chrome/common_resources.pak",
436     "$root_gen_dir/chrome/invalidations_resources.pak",
437     "$root_gen_dir/chrome/memory_internals_resources.pak",
438     "$root_gen_dir/chrome/net_internals_resources.pak",
439     "$root_gen_dir/chrome/password_manager_internals_resources.pak",
440     "$root_gen_dir/chrome/signin_internals_resources.pak",
441     "$root_gen_dir/chrome/sync_internals_resources.pak",
442     "$root_gen_dir/chrome/translate_internals_resources.pak",
443     "$root_gen_dir/components/components_resources.pak",
444     "$root_gen_dir/net/net_resources.pak",
445     "$root_gen_dir/ui/resources/webui_resources.pak",
446   ]
447   deps = [
448     "//chrome/browser:resources",
449     "//chrome/app/theme:chrome_unscaled_resources",
450     "//chrome/common:resources",
451     "//chrome/browser/resources:invalidations_resources",
452     "//chrome/browser/resources:memory_internals_resources",
453     "//chrome/browser/resources:net_internals_resources",
454     "//chrome/browser/resources:password_manager_internals_resources",
455     "//chrome/browser/resources:signin_internals_resources",
456     "//chrome/browser/resources:sync_internals_resources",
457     "//chrome/browser/resources:translate_internals_resources",
458     "//components/resources",
459     "//net:net_resources",
460     "//ui/resources",
461   ]
463   if (!is_ios && !is_android) {
464     # New paks should be added here by default.
465     sources += [
466       "$root_gen_dir/blink/devtools_resources.pak",
467       "$root_gen_dir/chrome/component_extension_resources.pak",
468       "$root_gen_dir/chrome/options_resources.pak",
469       "$root_gen_dir/chrome/quota_internals_resources.pak",
470       "$root_gen_dir/chrome/settings_resources.pak",
471       "$root_gen_dir/chrome/sync_file_system_internals_resources.pak",
472       "$root_gen_dir/chrome/webrtc_device_provider_resources.pak",
473     ]
474     deps += [
475       "//chrome/browser/devtools:webrtc_device_provider_resources",
476       "//chrome/browser/resources:component_extension_resources",
477       "//chrome/browser/resources:options_resources",
478       "//chrome/browser/resources:settings_resources",
479       "//chrome/browser/resources:quota_internals_resources",
480       "//chrome/browser/resources:sync_file_system_internals_resources",
481       "//content/browser/devtools:devtools_resources",
482     ]
483   }
484   if (!is_ios) {
485     sources += [
486       "$root_gen_dir/blink/public/resources/blink_resources.pak",
487       "$root_gen_dir/content/browser/tracing/tracing_resources.pak",
488       "$root_gen_dir/content/content_resources.pak",
489     ]
490   }
491   if (is_chromeos) {
492     sources += [ "$root_gen_dir/ui/file_manager/file_manager_resources.pak" ]
493     sources += [ "$root_gen_dir/ui/oobe/oobe_resources.pak" ]
494     deps += [ "//ui/file_manager:resources" ]
495     deps += [ "//ui/oobe:resources" ]
496   }
497   if (enable_extensions) {
498     sources += [
499       "$root_gen_dir/chrome/extensions_api_resources.pak",
500       "$root_gen_dir/extensions/extensions_renderer_resources.pak",
501       "$root_gen_dir/extensions/extensions_resources.pak",
502     ]
503     deps += [ "//chrome/common:extensions_api_resources" ]
504   }
506   # GYP outputs the file in the gen/repack directory. On non-Mac/iOS platforms
507   # it them copies it. This skipes the copy step and writes it to the final
508   # location.
509   if (is_mac || is_ios) {
510     output = "$root_gen_dir/repack/resources.pak"
511   } else {
512     output = "$root_out_dir/resources.pak"
513   }
516 # GYP version: chrome/chrome_resources.gyp:browser_tests_pak
517 repack("browser_tests_pak") {
518   sources = [
519     "$root_gen_dir/chrome/options_test_resources.pak",
520   ]
521   output = "$root_out_dir/browser_tests.pak"
524 # Collects per-locale grit files from many sources into global per-locale files.
525 chrome_repack_locales("repack_locales_pack") {
526   visibility = [ ":*" ]
528   input_locales = locales
530   if (is_mac) {
531     output_locales = locales_as_mac_outputs
532   } else {
533     output_locales = locales
534   }
537 chrome_repack_locales("repack_pseudo_locales_pack") {
538   visibility = [ ":*" ]
540   input_locales = [ "fake-bidi" ]
542   if (is_mac) {
543     output_locales = [ "fake_bidi" ]  # Mac uses underscores.
544   } else {
545     output_locales = [ "fake-bidi" ]
546   }
549 # Generates a rule to repack a set of resources, substituting a given string
550 # in for the percentage (e.g. "100", "200"). It generates the repacked files in
551 # the "gen" directory, and then introduces a copy rule to copy it to the root
552 # build directory.
554 # It's not clear why this two-step dance is necessary as opposed to just
555 # generating the file in the destination. However, this is what the GYP build
556 # does, and for maintenance purposes, this keeps the same files in the same
557 # place between the two builds when possible.
559 # Argument:
560 #   percent [required]
561 #      String to substitute for the percentage.
562 template("chrome_repack_percent") {
563   percent = invoker.percent
565   repack_name = "${target_name}_repack"
566   repack_output_file = "$root_gen_dir/repack/chrome_${percent}_percent.pak"
568   copy_name = target_name
570   repack(repack_name) {
571     visibility = [ ":$copy_name" ]
573     # All sources should also have deps for completeness.
574     sources = [
575       "$root_gen_dir/chrome/renderer_resources_${percent}_percent.pak",
576       "$root_gen_dir/chrome/theme_resources_${percent}_percent.pak",
577       "$root_gen_dir/components/components_resources_${percent}_percent.pak",
578       "$root_gen_dir/ui/resources/ui_resources_${percent}_percent.pak",
579     ]
581     deps = [
582       "//chrome/app/theme:theme_resources",
583       "//chrome/renderer:resources",
584       "//components/strings",
585       "//net:net_resources",
586     ]
588     if (!is_ios) {
589       sources += [ "$root_gen_dir/content/app/resources/content_resources_${percent}_percent.pak" ]
590       deps += [ "//content:resources" ]
591     }
592     if (use_ash) {
593       sources +=
594           [ "$root_gen_dir/ash/resources/ash_resources_${percent}_percent.pak" ]
595       deps += [ "//ash/resources" ]
596     }
597     if (is_chromeos) {
598       sources += [ "$root_gen_dir/ui/chromeos/resources/ui_chromeos_resources_${percent}_percent.pak" ]
599       deps += [ "//ui/chromeos/resources" ]
600     }
601     if (enable_extensions) {
602       sources += [ "$root_gen_dir/extensions/extensions_browser_resources_${percent}_percent.pak" ]
603     }
605     output = repack_output_file
606   }
608   copy(copy_name) {
609     visibility = [ ":*" ]
610     deps = [
611       ":$repack_name",
612     ]
613     sources = [
614       repack_output_file,
615     ]
616     outputs = [
617       "$root_build_dir/chrome_${percent}_percent.pak",
618     ]
619   }
622 chrome_repack_percent("repack_chrome_100_percent") {
623   percent = "100"
626 if (enable_hidpi) {
627   chrome_repack_percent("repack_chrome_200_percent") {
628     percent = "200"
629   }
632 # GYP version: chrome/chrome_resources.gyp:chrome_strings
633 group("strings") {
634   deps = [
635     "//chrome/app:chromium_strings",
636     "//chrome/app:generated_resources",
637     "//chrome/app:google_chrome_strings",
638     "//chrome/app/resources:locale_settings",
639   ]
642 if (is_android) {
643   # GYP: //chrome/chrome.gyp:content_setting_java
644   java_cpp_enum("content_setting_javagen") {
645     sources = [
646       "../components/content_settings/core/common/content_settings.h",
647     ]
648     outputs = [
649       "org/chromium/chrome/browser/ContentSetting.java",
650     ]
651   }
653   # GYP: //chrome/chrome.gyp:content_settings_type_java
654   java_cpp_enum("content_settings_type_javagen") {
655     sources = [
656       "../components/content_settings/core/common/content_settings_types.h",
657     ]
658     outputs = [
659       "org/chromium/chrome/browser/ContentSettingsType.java",
660     ]
661   }
663   # GYP: //chrome/chrome.gyp:page_info_connection_type_java
664   java_cpp_enum("page_info_connection_type_javagen") {
665     sources = [
666       "browser/ui/android/website_settings_popup_android.h",
667     ]
668     outputs = [
669       "org/chromium/chrome/browser/PageInfoConnectionType.java",
670     ]
671   }
673   # GYP: //chrome/chrome_android.gypi:chrome_android_core
674   static_library("chrome_android_core") {
675     sources = [
676       "app/android/chrome_android_initializer.cc",
677       "app/android/chrome_android_initializer.h",
678       "app/android/chrome_jni_onload.cc",
679       "app/android/chrome_jni_onload.h",
680       "app/android/chrome_main_delegate_android.cc",
681       "app/android/chrome_main_delegate_android.h",
682       "app/chrome_main_delegate.cc",
683       "app/chrome_main_delegate.h",
684     ]
686     include_dirs = [ android_ndk_include_dir ]
688     libs = [
689       "android",
690       "jnigraphics",
691     ]
693     deps = [
694       "//chrome/browser",
695       "//chrome/browser/ui",
696       "//chrome/child",
697       "//chrome/plugin",
698       "//chrome/renderer",
699       "//chrome/utility",
700       "//components/enhanced_bookmarks",
701       "//content/public/app:both",
702     ]
703   }
706 if (is_linux) {
707   action("manpage") {
708     if (is_chrome_branded) {
709       name = "Google Chrome"
710       filename = "google-chrome"
711       confdir = "google-chrome"
712     } else {
713       name = "Chromium"
714       filename = "chromium-browser"
715       confdir = "chromium"
716     }
718     script = "//chrome/tools/build/linux/sed.py"
719     infile = "app/resources/manpage.1.in"
720     inputs = [
721       infile,
722     ]
724     outfile = "$root_out_dir/chrome.1"
725     outputs = [
726       outfile,
727     ]
729     args = [
730       rebase_path(infile, root_build_dir),
731       rebase_path(outfile, root_build_dir),
732       "-e s/@@NAME@@/$name/",
733       "-e s/@@FILENAME@@/$filename/",
734       "-e s/@@CONFDIR@@/$confdir/",
735     ]
736   }