| Index: content/test/BUILD.gn
|
| diff --git a/content/test/BUILD.gn b/content/test/BUILD.gn
|
| index 3acecb05252e9fc5c6103f03d99c69e90bb8086b..313c9b7bd3fb997500ec6d71091971f258c9931c 100644
|
| --- a/content/test/BUILD.gn
|
| +++ b/content/test/BUILD.gn
|
| @@ -15,6 +15,7 @@ content_tests_gypi_values = exec_script(
|
| # GYP version //content/content_tests.gypi:test_support_content
|
| static_library("test_support") {
|
| testonly = true
|
| + public_deps = []
|
| deps = [
|
| "//cc/blink",
|
| "//content/public/app:both",
|
| @@ -42,6 +43,9 @@ static_library("test_support") {
|
| sources = rebase_path(content_tests_gypi_values.test_support_content_sources,
|
| ".", "//content")
|
|
|
| + public_deps += [
|
| + "//third_party/WebKit/public:blink",
|
| + ]
|
| deps += [
|
| "//content/browser/speech/proto",
|
| "//content/public/child:child_sources",
|
| @@ -58,16 +62,11 @@ static_library("test_support") {
|
| "//ppapi:ppapi_unittest_shared",
|
| "//storage/browser",
|
| "//storage/common",
|
| - "//third_party/WebKit/public:blink",
|
| "//ui/surface",
|
| "//v8",
|
| "//webkit/common/gpu",
|
| ]
|
|
|
| - forward_dependent_configs_from = [
|
| - "//third_party/WebKit/public:blink",
|
| - ]
|
| -
|
| if (enable_plugins) {
|
| deps += [ "//content/ppapi_plugin" ]
|
| }
|
|
|