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

Side by Side Diff: components/plugins/renderer/BUILD.gn

Issue 2512563003: Convert enable_plugins to a buildflag header. (Closed)
Patch Set: Merge Created 4 years, 1 month 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 unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//ppapi/features/features.gni")
6 7
7 static_library("renderer") { 8 static_library("renderer") {
8 sources = [ 9 sources = [
9 "plugin_placeholder.cc", 10 "plugin_placeholder.cc",
10 "plugin_placeholder.h", 11 "plugin_placeholder.h",
11 "webview_plugin.cc", 12 "webview_plugin.cc",
12 "webview_plugin.h", 13 "webview_plugin.h",
13 ] 14 ]
14 if (enable_plugins) { 15 if (enable_plugins) {
15 sources += [ 16 sources += [
16 "loadable_plugin_placeholder.cc", 17 "loadable_plugin_placeholder.cc",
17 "loadable_plugin_placeholder.h", 18 "loadable_plugin_placeholder.h",
18 ] 19 ]
19 } 20 }
20 21
21 deps = [ 22 deps = [
22 "//content/public/child", 23 "//content/public/child",
23 "//content/public/common", 24 "//content/public/common",
24 "//content/public/renderer", 25 "//content/public/renderer",
25 "//gin", 26 "//gin",
26 "//skia", 27 "//skia",
27 "//third_party/WebKit/public:blink", 28 "//third_party/WebKit/public:blink",
28 "//third_party/re2", 29 "//third_party/re2",
29 "//ui/base", 30 "//ui/base",
30 "//v8", 31 "//v8",
31 ] 32 ]
32 } 33 }
OLDNEW
« no previous file with comments | « components/content_settings/core/browser/BUILD.gn ('k') | components/renderer_context_menu/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698