5d882c6b91
NOTE: is this something we actually want? cc @deepak1556
38 lines
1.2 KiB
Text
38 lines
1.2 KiB
Text
# Copyright (c) 2018 GitHub, Inc.
|
|
# Use of this source code is governed by the MIT license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import("//electron/buildflags/buildflags.gni")
|
|
|
|
# Builds some of the chrome sources that Electron depends
|
|
# on unconditionally.
|
|
source_set("chrome") {
|
|
visibility = [ "//electron:electron_lib" ]
|
|
sources = [
|
|
"//chrome/browser/ssl/security_state_tab_helper.cc",
|
|
"//chrome/browser/ssl/security_state_tab_helper.h",
|
|
"//chrome/common/chrome_constants.cc",
|
|
"//chrome/common/chrome_constants.h",
|
|
"//chrome/common/secure_origin_whitelist.cc",
|
|
"//chrome/common/secure_origin_whitelist.h",
|
|
]
|
|
public_deps = [
|
|
"//content/public/browser",
|
|
]
|
|
deps = [
|
|
"//chrome/common:constants",
|
|
"//components/security_state/content",
|
|
]
|
|
|
|
if (enable_desktop_capturer) {
|
|
sources += [
|
|
"//chrome/browser/media/webrtc/desktop_media_list.h",
|
|
"//chrome/browser/media/webrtc/desktop_media_list_base.cc",
|
|
"//chrome/browser/media/webrtc/desktop_media_list_base.h",
|
|
"//chrome/browser/media/webrtc/desktop_media_list_observer.h",
|
|
"//chrome/browser/media/webrtc/native_desktop_media_list.cc",
|
|
"//chrome/browser/media/webrtc/native_desktop_media_list.h",
|
|
]
|
|
deps += [ "//ui/snapshot" ]
|
|
}
|
|
}
|