electron/BUILD.gn

909 строки
22 KiB
Plaintext
Исходник Обычный вид История

2018-05-04 01:44:29 +03:00
import("build/asar.gni")
import("build/npm.gni")
import("electron_paks.gni")
import("filenames.gni")
import("//build/config/locales.gni")
import("//build/config/win/manifest.gni")
import("//pdf/features.gni")
import("//third_party/ffmpeg/ffmpeg_options.gni")
import("//third_party/widevine/cdm/widevine.gni")
import("//tools/grit/repack.gni")
import("//tools/v8_context_snapshot/v8_context_snapshot.gni")
2018-05-04 01:44:29 +03:00
if (is_mac) {
import("//build/config/mac/rules.gni")
import("//third_party/icu/config.gni")
import("//v8/gni/v8.gni")
}
2018-05-16 22:51:11 +03:00
if (is_linux) {
import("//build/config/linux/pkg_config.gni")
pkg_config("gio_unix") {
packages = [ "gio-unix-2.0" ]
}
}
2018-05-04 01:44:29 +03:00
declare_args() {
electron_project_name = "electron"
electron_product_name = "Electron"
electron_company_name = "GitHub, Inc"
electron_company_abbr = "github"
electron_version = "0.0.0-dev"
enable_desktop_capturer = true
2018-05-04 01:44:29 +03:00
enable_run_as_node = true
2018-06-20 22:50:43 +03:00
enable_osr = false
enable_view_api = false
# Provide a fake location provider for mocking
# the geolocation responses. Disable it if you
# need to test with chromium's location provider.
# Should not be enabled for release build.
enable_fake_location_provider = !is_official_build
# Enable flash plugin support.
enable_pepper_flash = true
2018-06-29 01:43:21 +03:00
}
if (is_mas_build) {
assert(is_mac,
"It doesn't make sense to build a MAS build on a non-mac platform")
2018-05-04 01:44:29 +03:00
}
config("branding") {
defines = [
"ATOM_PRODUCT_NAME=\"$electron_product_name\"",
"ATOM_PROJECT_NAME=\"$electron_project_name\"",
]
}
config("features") {
defines = []
if (enable_desktop_capturer) {
defines += [ "ENABLE_DESKTOP_CAPTURER=1" ]
}
2018-05-04 01:44:29 +03:00
if (enable_run_as_node) {
defines += [ "ENABLE_RUN_AS_NODE=1" ]
}
if (enable_osr) {
defines += [ "ENABLE_OSR=1" ]
}
if (enable_view_api) {
defines += [ "ENABLE_VIEW_API" ]
}
if (enable_pepper_flash) {
defines += [ "ENABLE_PEPPER_FLASH" ]
}
2018-05-04 01:44:29 +03:00
}
npm_action("atom_browserify_sandbox") {
deps = [
":atom_js2c_copy",
]
2018-05-04 01:44:29 +03:00
sandbox_args = [
"lib/sandboxed_renderer/init.js",
"-r",
"./lib/sandboxed_renderer/api/exports/electron.js:electron",
"-r",
"./lib/sandboxed_renderer/api/exports/fs.js:fs",
"-r",
"./lib/sandboxed_renderer/api/exports/os.js:os",
"-r",
"./lib/sandboxed_renderer/api/exports/path.js:path",
"-r",
"./lib/sandboxed_renderer/api/exports/child_process.js:child_process",
2018-05-04 01:44:29 +03:00
]
inputs = [
"lib/sandboxed_renderer/init.js",
"lib/sandboxed_renderer/api/exports/electron.js",
"lib/sandboxed_renderer/api/exports/fs.js",
"lib/sandboxed_renderer/api/exports/os.js",
"lib/sandboxed_renderer/api/exports/path.js",
"lib/sandboxed_renderer/api/exports/child_process.js",
]
outputs = [
"$target_gen_dir/js2c/preload_bundle.js",
]
2018-05-04 01:44:29 +03:00
script = "browserify"
args = sandbox_args + [
"-o",
rebase_path(outputs[0]),
]
2018-05-04 01:44:29 +03:00
}
npm_action("atom_browserify_isolated") {
deps = [
":atom_js2c_copy",
]
2018-05-04 01:44:29 +03:00
inputs = [
"lib/isolated_renderer/init.js",
]
outputs = [
"$target_gen_dir/js2c/isolated_bundle.js",
]
2018-05-04 01:44:29 +03:00
script = "browserify"
args = inputs + [
"-o",
rebase_path(outputs[0]),
]
2018-05-04 01:44:29 +03:00
}
copy("atom_js2c_copy") {
sources = [
"lib/common/asar.js",
"lib/common/asar_init.js",
]
outputs = [
"$target_gen_dir/js2c/{{source_file_part}}",
]
2018-05-04 01:44:29 +03:00
}
action("atom_js2c") {
deps = [
":atom_browserify_isolated",
":atom_browserify_sandbox",
":atom_js2c_copy",
2018-05-04 01:44:29 +03:00
]
js2c_sources = filenames.js2c_sources
2018-05-04 01:44:29 +03:00
browserify_sources = [
"$target_gen_dir/js2c/isolated_bundle.js",
"$target_gen_dir/js2c/preload_bundle.js",
]
inputs = js2c_sources + browserify_sources
outputs = [
"$target_gen_dir/atom_natives.h",
]
2018-05-04 01:44:29 +03:00
script = "tools/js2c.py"
args = [ rebase_path("//third_party/electron_node") ] +
rebase_path(outputs, root_build_dir) +
[ rebase_path("$target_gen_dir/js2c", root_build_dir) ]
2018-05-04 01:44:29 +03:00
}
asar("js2asar") {
sources = filenames.js_sources
2018-06-20 22:50:43 +03:00
if (enable_desktop_capturer) {
sources += [
"lib/browser/desktop-capturer.js",
"lib/renderer/api/desktop-capturer.js",
]
}
if (enable_view_api) {
sources += [
"lib/browser/api/box-layout.js",
"lib/browser/api/button.js",
"lib/browser/api/label-button.js",
"lib/browser/api/layout-manager.js",
"lib/browser/api/text-field.js",
]
}
outputs = [
"$root_out_dir/resources/electron.asar",
]
2018-05-04 01:44:29 +03:00
root = "lib"
}
asar("app2asar") {
sources = filenames.default_app_sources
outputs = [
"$root_out_dir/resources/default_app.asar",
]
2018-05-04 01:44:29 +03:00
root = "default_app"
}
static_library("electron_lib") {
configs += [ "//v8:external_startup_data" ]
2018-08-08 20:43:52 +03:00
configs += [ "//third_party/electron_node:node_internals" ]
2018-05-04 01:44:29 +03:00
public_configs = [
":branding",
":features",
]
2018-05-04 01:44:29 +03:00
deps = [
":atom_js2c",
"brightray",
"native_mate",
"//base",
"//base:i18n",
2018-05-04 01:44:29 +03:00
"//chrome/common:constants",
"//components/network_session_configurator/common",
"//components/prefs",
"//components/printing/common",
"//components/security_state/content",
2018-06-20 22:50:43 +03:00
"//components/viz/service",
"//content/public/app:both",
"//content/public/child",
2018-05-04 01:44:29 +03:00
"//device/geolocation",
"//gin",
"//net:net_resources",
"//ppapi/host",
"//ppapi/proxy",
"//ppapi/shared_impl",
"//printing",
"//skia",
"//third_party/blink/public:blink",
2018-05-04 01:44:29 +03:00
"//third_party/boringssl",
"//third_party/electron_node:node_lib",
2018-05-04 01:44:29 +03:00
"//third_party/leveldatabase",
"//third_party/libyuv",
"//third_party/webrtc_overrides:init_webrtc",
"//third_party/widevine/cdm:headers",
2018-05-04 01:44:29 +03:00
"//ui/events:dom_keycode_converter",
2018-06-20 22:50:43 +03:00
"//ui/gl",
2018-05-04 01:44:29 +03:00
"//ui/views",
"//v8",
]
2018-08-15 00:49:35 +03:00
# TODO: this requires a visibility patch to chromium src. it would be better
# to use the publicly-available API, which I think is mojo-based. Once
# electron switches to using the public API, we can remove this from the deps
# list and remove the visibility patch from chromium.
deps += [ "//services/device/wake_lock/power_save_blocker" ]
include_dirs = [
"chromium_src",
".",
"$target_gen_dir",
# TODO(nornagon): replace usage of SchemeRegistry by an actually exported
2018-08-15 00:49:35 +03:00
# API of blink, then remove this from the include_dirs.
"//third_party/blink/renderer",
]
defines = []
libs = []
extra_source_filters = []
if (!is_linux) {
extra_source_filters += [
"*\bx/*",
"*_x11.h",
"*_x11.cc",
"*_gtk.h",
"*_gtk.cc",
"*\blibrary_loaders/*",
]
}
if (!is_win) {
extra_source_filters += [
"*\bwin_*.h",
"*\bwin_*.cc",
]
}
if (is_mac) {
extra_source_filters += [
"*_views.cc",
"*_views.h",
"*\bviews/*",
"*/autofill_popup.cc",
"*/autofill_popup.h",
]
}
set_sources_assignment_filter(
sources_assignment_filter + extra_source_filters)
sources = filenames.lib_sources
set_sources_assignment_filter(sources_assignment_filter)
sources += [ "$target_gen_dir/atom_natives.h" ]
if (is_component_build) {
defines += [ "NODE_SHARED_MODE" ]
}
if (enable_fake_location_provider) {
defines += [ "OVERRIDE_LOCATION_PROVIDER" ]
sources += [
"atom/browser/fake_location_provider.cc",
"atom/browser/fake_location_provider.h",
]
}
2018-05-04 01:44:29 +03:00
if (is_mac) {
deps += [
2018-06-29 23:39:22 +03:00
"//third_party/crashpad/crashpad/client",
"//ui/accelerated_widget_mac",
2018-06-29 23:39:22 +03:00
]
include_dirs += [
# NOTE(nornagon): other chromium files use the full path to include
# crashpad; this is just here for compatibility between GN and GYP, so that
# the #includes can be agnostic about where crashpad is vendored.
"//third_party/crashpad",
2018-05-04 01:44:29 +03:00
]
if (is_mas_build) {
deps -= [ "//third_party/crashpad/crashpad/client" ]
sources += [ "atom/browser/api/atom_api_app_mas.mm" ]
sources -= [
"atom/browser/auto_updater_mac.mm",
"atom/common/crash_reporter/crash_reporter_mac.h",
"atom/common/crash_reporter/crash_reporter_mac.mm",
]
defines += [ "MAS_BUILD" ]
} else {
libs += [
"Squirrel.framework",
"ReactiveCocoa.framework",
"Mantle.framework",
]
cflags_objcc = [
"-F",
rebase_path("external_binaries", root_build_dir),
]
# ReactiveCocoa which is used by Squirrel requires using __weak.
cflags_objcc += [ "-fobjc-weak" ]
}
2018-05-04 01:44:29 +03:00
}
2018-05-16 22:51:11 +03:00
if (is_linux) {
deps += [
"//build/config/linux/gtk",
2018-05-16 22:51:11 +03:00
"//chrome/browser/ui/libgtkui",
"//device/bluetooth",
"//ui/events/devices/x11",
"//ui/events/platform/x11",
"//ui/native_theme",
"//ui/views/controls/webview",
"//ui/wm",
]
configs += [ ":gio_unix" ]
2018-07-11 20:45:21 +03:00
defines += [
# Disable warnings for g_settings_list_schemas.
"GLIB_DISABLE_DEPRECATION_WARNINGS",
2018-07-11 20:45:21 +03:00
]
sources += filenames.lib_sources_linux
sources += filenames.lib_sources_nss
}
if (is_win) {
sources += filenames.lib_sources_win
libs += [ "dwmapi.lib" ]
2018-07-11 20:45:21 +03:00
}
if (is_linux || is_win) {
2018-06-29 23:39:22 +03:00
deps += [ "//third_party/breakpad:client" ]
include_dirs += [ "//third_party/breakpad" ]
2018-05-16 22:51:11 +03:00
}
2018-05-04 01:44:29 +03:00
if (enable_pdf) {
deps += [ "//pdf" ]
2018-05-04 01:44:29 +03:00
}
if (enable_run_as_node) {
sources += [
"atom/app/node_main.cc",
"atom/app/node_main.h",
]
}
if (enable_osr) {
sources += [
"atom/browser/api/atom_api_web_contents_osr.cc",
"atom/browser/osr/osr_output_device.cc",
"atom/browser/osr/osr_output_device.h",
"atom/browser/osr/osr_render_widget_host_view.cc",
"atom/browser/osr/osr_render_widget_host_view.h",
"atom/browser/osr/osr_render_widget_host_view_mac.mm",
"atom/browser/osr/osr_view_proxy.cc",
"atom/browser/osr/osr_view_proxy.h",
"atom/browser/osr/osr_web_contents_view.cc",
"atom/browser/osr/osr_web_contents_view.h",
"atom/browser/osr/osr_web_contents_view_mac.mm",
]
deps += [
"//components/viz/service",
"//ui/compositor",
2018-05-04 01:44:29 +03:00
]
}
if (enable_desktop_capturer) {
if (is_component_build && is_win) {
# On windows the implementation relies on unexported
# DxgiDuplicatorController class.
deps += [ "//third_party/webrtc/modules/desktop_capture" ]
}
sources += [
"atom/browser/api/atom_api_desktop_capturer.cc",
"atom/browser/api/atom_api_desktop_capturer.h",
]
}
if (enable_view_api) {
sources += [
"atom/browser/api/atom_api_box_layout.cc",
"atom/browser/api/atom_api_box_layout.h",
"atom/browser/api/atom_api_button.cc",
"atom/browser/api/atom_api_button.h",
"atom/browser/api/atom_api_label_button.cc",
"atom/browser/api/atom_api_label_button.h",
"atom/browser/api/atom_api_layout_manager.cc",
"atom/browser/api/atom_api_layout_manager.h",
"atom/browser/api/atom_api_text_field.cc",
"atom/browser/api/atom_api_text_field.h",
]
}
if (enable_pepper_flash) {
deps += [ "components/pepper_flash" ]
}
if (enable_widevine) {
sources += [
"//chrome/common/widevine_cdm_constants.cc",
"//chrome/common/widevine_cdm_constants.h",
"//chrome/renderer/media/chrome_key_systems.cc",
"//chrome/renderer/media/chrome_key_systems.h",
"//chrome/renderer/media/chrome_key_systems_provider.cc",
"//chrome/renderer/media/chrome_key_systems_provider.h",
]
deps += [ "//components/cdm/renderer" ]
}
2018-05-04 01:44:29 +03:00
}
electron_paks("packed_resources") {
if (is_mac) {
output_dir = "$root_gen_dir/electron_repack"
copy_data_to_bundle = true
} else {
output_dir = root_out_dir
}
}
2018-05-04 01:44:29 +03:00
if (is_mac) {
electron_framework_name = electron_product_name + " Framework"
electron_helper_name = electron_product_name + " Helper"
2018-06-29 01:43:21 +03:00
electron_login_helper_name = electron_product_name + " Login Helper"
2018-05-04 01:44:29 +03:00
electron_framework_version = "A"
electron_mac_bundle_id = "com.$electron_company_abbr.$electron_project_name"
mac_xib_bundle_data("electron_xibs") {
sources = [
"atom/common/resources/mac/MainMenu.xib",
]
2018-05-04 01:44:29 +03:00
}
bundle_data("electron_framework_resources") {
public_deps = [
":packed_resources",
2018-05-04 01:44:29 +03:00
]
sources = []
2018-05-04 01:44:29 +03:00
if (icu_use_data_file) {
sources += [ "$root_out_dir/icudtl.dat" ]
public_deps += [ "//third_party/icu:icudata" ]
}
if (v8_use_external_startup_data) {
2018-06-20 22:50:43 +03:00
sources += [ "$root_out_dir/natives_blob.bin" ]
2018-05-04 01:44:29 +03:00
public_deps += [ "//v8" ]
2018-06-20 22:50:43 +03:00
if (use_v8_context_snapshot) {
sources += [ "$root_out_dir/v8_context_snapshot.bin" ]
public_deps += [ "//tools/v8_context_snapshot" ]
} else {
sources += [ "$root_out_dir/snapshot_blob.bin" ]
}
2018-05-04 01:44:29 +03:00
}
outputs = [
"{{bundle_resources_dir}}/{{source_file_part}}",
]
}
if (!is_component_build) {
bundle_data("electron_framework_libraries") {
sources = []
public_deps = []
if (is_component_ffmpeg) {
sources += [ "$root_out_dir/libffmpeg.dylib" ]
public_deps += [ "//third_party/ffmpeg:ffmpeg" ]
}
outputs = [
"{{bundle_contents_dir}}/Libraries/{{source_file_part}}",
]
}
} else {
group("electron_framework_libraries") {
}
}
2018-06-29 01:43:21 +03:00
bundle_data("electron_crashpad_helper") {
2018-05-04 01:44:29 +03:00
sources = [
"$root_out_dir/crashpad_handler",
]
outputs = [
"{{bundle_resources_dir}}/{{source_file_part}}",
]
public_deps = [
"//third_party/crashpad/crashpad/handler:crashpad_handler",
]
}
mac_framework_bundle("electron_framework") {
output_name = electron_framework_name
framework_version = electron_framework_version
framework_contents = [ "Resources" ]
public_deps = [
":electron_lib",
]
2018-05-04 01:44:29 +03:00
deps = [
":electron_framework_libraries",
":electron_framework_resources",
2018-05-04 01:44:29 +03:00
":electron_xibs",
]
2018-06-29 01:43:21 +03:00
if (!is_mas_build) {
deps += [ ":electron_crashpad_helper" ]
}
2018-05-04 01:44:29 +03:00
info_plist = "atom/common/resources/mac/Info.plist"
extra_substitutions = [
"ATOM_BUNDLE_ID=$electron_mac_bundle_id.framework",
"ELECTRON_VERSION=$electron_version",
]
2018-05-04 01:44:29 +03:00
include_dirs = [ "." ]
sources = filenames.framework_sources
2018-05-04 01:44:29 +03:00
libs = [
"Carbon.framework",
"QuartzCore.framework",
"Quartz.framework",
"Security.framework",
"SecurityInterface.framework",
"ServiceManagement.framework",
"StoreKit.framework",
]
ldflags = [
"-F",
rebase_path("external_binaries", root_build_dir),
2018-05-04 01:44:29 +03:00
"-Wl,-install_name,@rpath/$output_name.framework/$output_name",
"-rpath",
"@loader_path/Libraries",
]
if (is_component_build) {
ldflags += [
"-rpath",
"@executable_path/../../../../../..",
2018-05-04 01:44:29 +03:00
]
}
}
mac_app_bundle("electron_helper_app") {
output_name = electron_helper_name
deps = [
":electron_framework+link",
]
sources = filenames.app_sources
2018-05-04 01:44:29 +03:00
include_dirs = [ "." ]
info_plist = "atom/renderer/resources/mac/Info.plist"
extra_substitutions = [ "ATOM_BUNDLE_ID=$electron_mac_bundle_id.helper" ]
2018-05-04 01:44:29 +03:00
ldflags = [
"-rpath",
"@executable_path/../../..",
]
}
bundle_data("electron_app_framework_bundle_data") {
sources = [
"$root_out_dir/$electron_framework_name.framework",
"$root_out_dir/$electron_helper_name.app",
]
2018-06-29 01:43:21 +03:00
if (!is_mas_build) {
sources += [
"external_binaries/Mantle.framework",
"external_binaries/ReactiveCocoa.framework",
"external_binaries/Squirrel.framework",
2018-06-29 01:43:21 +03:00
]
}
2018-05-04 01:44:29 +03:00
outputs = [
"{{bundle_contents_dir}}/Frameworks/{{source_file_part}}",
]
public_deps = [
":electron_framework+link",
":electron_helper_app",
]
}
2018-06-29 01:43:21 +03:00
mac_app_bundle("electron_login_helper") {
output_name = electron_login_helper_name
sources = filenames.login_helper_sources
2018-06-29 01:43:21 +03:00
include_dirs = [ "." ]
libs = [ "AppKit.framework" ]
info_plist = "atom/app/resources/mac/loginhelper-Info.plist"
extra_substitutions =
[ "ATOM_BUNDLE_ID=$electron_mac_bundle_id.loginhelper" ]
2018-06-29 01:43:21 +03:00
}
bundle_data("electron_login_helper_app") {
public_deps = [
":electron_login_helper",
]
sources = [
"$root_out_dir/$electron_login_helper_name.app",
]
outputs = [
"{{bundle_contents_dir}}/Library/LoginItems",
]
2018-06-29 01:43:21 +03:00
}
2018-05-04 01:44:29 +03:00
bundle_data("electron_app_resources") {
public_deps = [
":app2asar",
":js2asar",
2018-05-04 01:44:29 +03:00
]
sources = [
2018-05-16 22:51:11 +03:00
"$root_out_dir/resources/default_app.asar",
"$root_out_dir/resources/electron.asar",
"atom/browser/resources/mac/electron.icns",
2018-05-04 01:44:29 +03:00
]
outputs = [
"{{bundle_resources_dir}}/{{source_file_part}}",
2018-05-04 01:44:29 +03:00
]
}
mac_app_bundle("electron_app") {
output_name = electron_product_name
sources = filenames.app_sources
2018-05-04 01:44:29 +03:00
include_dirs = [ "." ]
deps = [
":electron_app_framework_bundle_data",
":electron_app_resources",
]
2018-06-29 01:43:21 +03:00
if (is_mas_build) {
deps += [ ":electron_login_helper_app" ]
}
2018-05-04 01:44:29 +03:00
info_plist = "atom/browser/resources/mac/Info.plist"
extra_substitutions = [ "ATOM_BUNDLE_ID=$electron_mac_bundle_id" ]
2018-05-04 01:44:29 +03:00
ldflags = [
"-rpath",
"@executable_path/../Frameworks",
]
}
} else {
windows_manifest("electron_app_manifest") {
sources = [
as_invoker_manifest,
common_controls_manifest,
default_compatibility_manifest,
]
}
2018-05-16 22:51:11 +03:00
executable("electron_app") {
output_name = electron_project_name
sources = filenames.app_sources
2018-05-16 22:51:11 +03:00
include_dirs = [ "." ]
deps = [
":app2asar",
":electron_app_manifest",
2018-05-16 22:51:11 +03:00
":electron_lib",
":js2asar",
":packed_resources",
2018-05-16 22:51:11 +03:00
"//build/config:exe_and_shlib_deps",
"//content:sandbox_helper_win",
"//ui/strings",
2018-05-16 22:51:11 +03:00
]
data = []
data += [ "$root_out_dir/resources.pak" ]
data += [ "$root_out_dir/chrome_100_percent.pak" ]
if (enable_hidpi) {
data += [ "$root_out_dir/chrome_200_percent.pak" ]
}
foreach(locale, locales) {
data += [ "$root_out_dir/locales/$locale.pak" ]
}
if (!is_mac) {
data += [ "$root_out_dir/resources" ]
}
public_deps = [
"//tools/v8_context_snapshot:v8_context_snapshot",
]
if (is_win) {
sources += [
# TODO: we should be generating our .rc files more like how chrome does
"atom/browser/resources/win/atom.ico",
"atom/browser/resources/win/atom.rc",
"atom/browser/resources/win/resources.h",
]
deps += [
"//third_party/breakpad:breakpad_handler",
"//third_party/breakpad:breakpad_sender",
"//ui/native_theme:native_theme_browser",
"//ui/shell_dialogs",
"//ui/views/controls/webview",
"//ui/wm",
"//ui/wm/public",
]
libs = [
"comctl32.lib",
"uiautomationcore.lib",
"wtsapi32.lib",
]
configs += [ "//build/config/win:windowed" ]
ldflags = [
2018-08-15 00:49:35 +03:00
# Windows 7 doesn't have these DLLs.
# TODO: are there other DLLs we need to list here to be win7
# compatible?
"/DELAYLOAD:api-ms-win-core-winrt-l1-1-0.dll",
"/DELAYLOAD:api-ms-win-core-winrt-string-l1-1-0.dll",
]
}
if (is_linux) {
if (!is_component_build && is_component_ffmpeg) {
configs += [ "//build/config/gcc:rpath_for_built_shared_libraries" ]
}
}
2018-05-16 22:51:11 +03:00
}
}
group("electron_tests") {
testonly = true
deps = [
":blink_unittests",
":chromium_browsertests",
":chromium_unittests",
]
}
group("blink_unittests") {
testonly = true
deps = [
2018-08-20 14:47:33 +03:00
"//third_party/blink/public:all_blink",
"//third_party/blink/public:test_support",
]
}
group("chromium_unittests") {
testonly = true
deps = [
"//base:base_unittests",
"//cc:cc_unittests",
"//cc/blink:cc_blink_unittests",
"//content/test:content_unittests",
"//crypto:crypto_unittests",
"//device:device_unittests",
"//gin:gin_unittests",
"//gpu:gpu_unittests",
"//ipc:ipc_tests",
"//media:media_unittests",
"//media/capture:capture_unittests",
"//media/midi:midi_unittests",
"//media/mojo:media_mojo_unittests",
"//mojo:mojo_unittests",
"//mojo/common:mojo_common_unittests",
"//net:net_unittests",
"//ppapi:ppapi_unittests",
"//printing:printing_unittests",
"//skia:skia_unittests",
"//sql:sql_unittests",
"//storage:storage_unittests",
"//third_party/angle/src/tests:angle_unittests",
"//third_party/leveldatabase:env_chromium_unittests",
"//tools/gn:gn_unittests",
"//ui/base:ui_base_unittests",
"//ui/compositor:compositor_unittests",
"//ui/display:display_unittests",
"//ui/events:events_unittests",
"//ui/gl:gl_unittests",
"//url:url_unittests",
"//url/ipc:url_ipc_unittests",
"//v8/test/unittests:unittests",
]
if (is_linux) {
deps += [
"//net:disk_cache_memory_test",
"//sandbox/linux:sandbox_linux_unittests",
]
if (use_dbus) {
deps += [ "//dbus:dbus_unittests" ]
}
}
}
group("chromium_browsertests") {
testonly = true
deps = [
"//content/test:content_browsertests",
]
}
template("dist_zip") {
_runtime_deps_target = "${target_name}__deps"
_runtime_deps_file =
"$root_out_dir/gen.runtime/" + get_label_info(target_name, "dir") + "/" +
get_label_info(target_name, "name") + ".runtime_deps"
group(_runtime_deps_target) {
forward_variables_from(invoker,
[
"deps",
"data_deps",
"data",
])
write_runtime_deps = _runtime_deps_file
}
action(target_name) {
script = "//electron/build/zip.py"
deps = [
":$_runtime_deps_target",
]
forward_variables_from(invoker, [ "outputs" ])
args = rebase_path(outputs + [ _runtime_deps_file ], root_build_dir) + [
target_cpu,
target_os,
]
}
}
copy("electron_license") {
sources = [
"LICENSE",
]
outputs = [
"$root_build_dir/{{source_file_part}}",
]
}
copy("chromium_licenses") {
deps = [
"//components/resources:about_credits",
]
sources = [
"$root_gen_dir/components/resources/about_credits.html",
]
outputs = [
"$root_build_dir/LICENSES.chromium.html",
]
}
group("licenses") {
data_deps = [
":electron_license",
":chromium_licenses",
]
}
action("electron_version") {
script = "build/write_version.py"
outputs = [
"$root_build_dir/version",
]
args = rebase_path(outputs, root_build_dir) + [ electron_version ]
}
dist_zip("electron_dist_zip") {
data_deps = [
":electron_app",
":licenses",
":electron_version",
]
outputs = [
"$root_build_dir/dist.zip",
]
}
group("electron") {
deps = [
":electron_app",
]
}