OLD | NEW |
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 } |
OLD | NEW |