summaryrefslogtreecommitdiffstats
path: root/chromium/components/plugins.gypi
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/plugins.gypi')
-rw-r--r--chromium/components/plugins.gypi59
1 files changed, 28 insertions, 31 deletions
diff --git a/chromium/components/plugins.gypi b/chromium/components/plugins.gypi
index 8ef3ea0946e..9775d8b7c4d 100644
--- a/chromium/components/plugins.gypi
+++ b/chromium/components/plugins.gypi
@@ -3,37 +3,34 @@
# found in the LICENSE file.
{
- 'conditions': [
- ['OS != "ios"', {
-
- 'targets': [
- {
- 'target_name': 'plugins_renderer',
- 'type': 'static_library',
- 'dependencies': [
- '../skia/skia.gyp:skia',
- '../third_party/re2/re2.gyp:re2',
- '../third_party/WebKit/public/blink.gyp:blink',
- ],
- 'include_dirs': [
- '..',
- ],
+ 'targets': [
+ {
+ 'target_name': 'plugins_renderer',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../gin/gin.gyp:gin',
+ '../skia/skia.gyp:skia',
+ '../third_party/WebKit/public/blink.gyp:blink',
+ '../third_party/re2/re2.gyp:re2',
+ '../v8/tools/gyp/v8.gyp:v8',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ 'plugins/renderer/plugin_placeholder.cc',
+ 'plugins/renderer/plugin_placeholder.h',
+ 'plugins/renderer/webview_plugin.cc',
+ 'plugins/renderer/webview_plugin.h',
+ ],
+ 'conditions' : [
+ ['OS=="android"', {
'sources': [
- 'plugins/renderer/plugin_placeholder.cc',
- 'plugins/renderer/plugin_placeholder.h',
- 'plugins/renderer/webview_plugin.cc',
- 'plugins/renderer/webview_plugin.h',
- ],
- 'conditions' : [
- ['OS=="android"', {
- 'sources': [
- 'plugins/renderer/mobile_youtube_plugin.cc',
- 'plugins/renderer/mobile_youtube_plugin.h',
- ]
- }],
- ],
- },
- ]
- }]
+ 'plugins/renderer/mobile_youtube_plugin.cc',
+ 'plugins/renderer/mobile_youtube_plugin.h',
+ ]
+ }],
+ ],
+ },
]
}