mirror of
https://github.com/electron/electron.git
synced 2026-02-06 05:05:16 -05:00
* build: remove duplicate devtools sources
* build: create separate target for chrome sources
* Move sources that are always depended on by electron,
starting with security_state_tab_helper.{cc|h}
* Add //component/strings to pak for devtools security tab
* fix: allow specifying type of the added filesystem.
https://chromium-review.googlesource.com/c/chromium/src/+/729250
* fix: do not index excluded folders
https://chromium-review.googlesource.com/c/chromium/src/+/972579
16 lines
512 B
Plaintext
16 lines
512 B
Plaintext
# Copyright (c) 2018 GitHub, Inc.
|
|
# Use of this source code is governed by the MIT license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# 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",
|
|
]
|
|
public_deps = [ "//content/public/browser" ]
|
|
deps = [ "//components/security_state/content" ]
|
|
}
|