| Index: content/public/renderer/BUILD.gn
|
| diff --git a/content/public/renderer/BUILD.gn b/content/public/renderer/BUILD.gn
|
| index ddadd89254e5aa11e2c87eb2575f6379ff787416..c3f7bb14ea6a5691c68ce5ddbe35836f95c5ab23 100644
|
| --- a/content/public/renderer/BUILD.gn
|
| +++ b/content/public/renderer/BUILD.gn
|
| @@ -5,6 +5,7 @@
|
| import("//build/config/features.gni")
|
| import("//media/media_options.gni")
|
| import("//ppapi/features/features.gni")
|
| +import("//content/content.gni")
|
|
|
| # See //content/BUILD.gn for how this works.
|
| group("renderer") {
|
| @@ -19,15 +20,9 @@ group("renderer") {
|
| }
|
| }
|
|
|
| -if (is_component_build) {
|
| - link_target_type = "source_set"
|
| -} else {
|
| - link_target_type = "static_library"
|
| -}
|
| -target(link_target_type, "renderer_sources") {
|
| +content_component("renderer_sources") {
|
| # External code should depend on via ":renderer" above.
|
| visibility = [ "//content/*" ]
|
| -
|
| sources = [
|
| "associated_resource_fetcher.h",
|
| "browser_plugin_delegate.cc",
|
| @@ -68,7 +63,6 @@ target(link_target_type, "renderer_sources") {
|
| "window_features_converter.cc",
|
| "window_features_converter.h",
|
| ]
|
| -
|
| configs += [ "//content:content_implementation" ]
|
|
|
| public_deps = [
|
|
|