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

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

Issue 2591803002: NOT FOR LANDING: Thread the needle through all webmodules.
Patch Set: Needle threaded all the way. Created 4 years 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
Index: third_party/WebKit/Source/web/BUILD.gn
diff --git a/third_party/WebKit/Source/web/BUILD.gn b/third_party/WebKit/Source/web/BUILD.gn
index 00ed7dae6f2ca68b0f4b73bdaeec24fba990dd00..c476d0e6a0be134f9bd4064de2f31d9dbbae306d 100644
--- a/third_party/WebKit/Source/web/BUILD.gn
+++ b/third_party/WebKit/Source/web/BUILD.gn
@@ -15,6 +15,7 @@ component("web") {
output_name = "blink_web"
deps = [
+ ":web_agents",
"//skia",
"//third_party/WebKit/Source/core",
"//third_party/WebKit/Source/modules",
@@ -283,6 +284,29 @@ component("web") {
}
}
+static_library("web_agents") {
+ deps = [
+ "//skia",
+ "//third_party/WebKit/Source/bindings/core/v8:fake_gen",
+ "//third_party/WebKit/Source/wtf",
+ "//v8",
+ ]
+
+ sources = [
+ "agent/agent.h",
+ "agent/sample/sample_agent.cc",
+ "agent/sample/sample_agent.h",
+ "api/frame.h",
+ ]
+
+ configs += [
+ "//third_party/WebKit/Source:config",
+ "//third_party/WebKit/Source/core:blink_core_pch",
+ ]
+
+ include_dirs = [ ".." ]
+}
+
static_library("test_support") {
deps = [
"//skia",

Powered by Google App Engine
This is Rietveld 408576698