electron/brightray/BUILD.gn

53 lines
1.5 KiB
Text

import("//build/config/ui.gni")
static_library("brightray") {
deps = [
"//base",
"//base:base_static",
"//content/public/browser",
"//content/shell:copy_shell_resources",
"//net:extras",
"//net:net_with_v8",
"//ui/views",
]
include_dirs = [ ".." ]
if (is_linux) {
deps += [ "//build/config/linux/gtk" ]
}
sources = [
"browser/brightray_paths.h",
"browser/browser_client.cc",
"browser/browser_client.h",
"browser/browser_main_parts.cc",
"browser/browser_main_parts.h",
"browser/browser_main_parts_mac.mm",
"browser/media/media_capture_devices_dispatcher.cc",
"browser/media/media_capture_devices_dispatcher.h",
"browser/media/media_device_id_salt.cc",
"browser/media/media_device_id_salt.h",
"browser/media/media_stream_devices_controller.cc",
"browser/media/media_stream_devices_controller.h",
"browser/net/require_ct_delegate.cc",
"browser/net/require_ct_delegate.h",
"browser/win/scoped_hstring.cc",
"browser/win/scoped_hstring.h",
"browser/zoom_level_delegate.cc",
"browser/zoom_level_delegate.h",
"common/application_info.cc",
"common/application_info.h",
"common/application_info_mac.mm",
"common/application_info_win.cc",
"common/content_client.cc",
"common/content_client.h",
"common/mac/main_application_bundle.h",
"common/mac/main_application_bundle.mm",
"common/main_delegate.cc",
"common/main_delegate.h",
"common/main_delegate_mac.mm",
"common/platform_util.h",
"common/platform_util_linux.cc",
]
}