Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(120)

Unified Diff: third_party/WebKit/Source/core/BUILD.gn

Issue 2299143005: Inline core HTML and SVG sources in the GN build. (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/core.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/BUILD.gn
diff --git a/third_party/WebKit/Source/core/BUILD.gn b/third_party/WebKit/Source/core/BUILD.gn
index 2ff96bde729d37b07f61b0494b296895b5dcf8d2..ca8fa6c778b19b1dbe754e12c0c1814756852bca 100644
--- a/third_party/WebKit/Source/core/BUILD.gn
+++ b/third_party/WebKit/Source/core/BUILD.gn
@@ -149,14 +149,16 @@ component("core") {
"//v8",
]
deps = [
- ":html",
":remaining",
":rendering",
- ":svg",
"//third_party/WebKit/Source/core/dom",
"//third_party/WebKit/Source/core/events",
+ "//third_party/WebKit/Source/core/html",
"//third_party/WebKit/Source/core/input",
+ "//third_party/WebKit/Source/core/layout/svg",
"//third_party/WebKit/Source/core/observer",
+ "//third_party/WebKit/Source/core/style:svg",
+ "//third_party/WebKit/Source/core/svg",
]
if (is_win && is_debug && is_component_build) {
@@ -169,30 +171,6 @@ component("core") {
public_configs = [ ":core_include_dirs" ]
}
-target(core_link_large_target_type, "html") {
- sources = rebase_path(webcore_html_files, ".", "//")
-
- configs -= core_config_remove
- configs += core_config_add
-
- deps = [
- ":core_generated",
- ":prerequisites",
- ]
-}
-
-target(core_link_large_target_type, "svg") {
- sources = rebase_path(webcore_svg_files, ".", "//")
-
- configs -= core_config_remove
- configs += core_config_add
-
- deps = [
- ":core_generated",
- ":prerequisites",
- ]
-}
-
target(core_link_large_target_type, "remaining") {
if (is_win && is_official_build &&
core_link_large_target_type == "split_static_library") {
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/core.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698