| 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",
|
|
|