| Index: content/app/BUILD.gn
|
| diff --git a/content/app/BUILD.gn b/content/app/BUILD.gn
|
| index 8663cf89ef3c4ac0e628392943264c3c9518ea8f..3406797943b122c1b61c943dc67d3e64b72e9c22 100644
|
| --- a/content/app/BUILD.gn
|
| +++ b/content/app/BUILD.gn
|
| @@ -3,6 +3,7 @@
|
| # found in the LICENSE file.
|
|
|
| import("//build/config/chrome_build.gni")
|
| +import("//build/config/features.gni")
|
|
|
| content_app_sources = [
|
| "android/app_jni_registrar.cc",
|
| @@ -52,6 +53,10 @@ if (is_win) {
|
| ]
|
| }
|
|
|
| +if (is_linux && enable_plugins) {
|
| + content_app_deps += [ "//content/ppapi_plugin:ppapi_plugin_sources" ]
|
| +}
|
| +
|
| content_app_extra_configs = [
|
| "//build/config/compiler:wexit_time_destructors",
|
| "//content:content_implementation",
|
|
|