Index: components/plugins.gypi |
diff --git a/components/plugins.gypi b/components/plugins.gypi |
index e56ed092fc35854a7c89d295d13fb470433f8e17..9775d8b7c4d6fb83e5f8096a39f3688a348bb496 100644 |
--- a/components/plugins.gypi |
+++ b/components/plugins.gypi |
@@ -3,39 +3,34 @@ |
# found in the LICENSE file. |
{ |
- 'conditions': [ |
- ['OS != "ios"', { |
- |
- 'targets': [ |
- { |
- 'target_name': 'plugins_renderer', |
- 'type': 'static_library', |
- 'dependencies': [ |
- '../third_party/re2/re2.gyp:re2', |
- '../gin/gin.gyp:gin', |
- '../skia/skia.gyp:skia', |
- '../third_party/WebKit/public/blink.gyp:blink', |
- '../v8/tools/gyp/v8.gyp:v8', |
- ], |
- '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', |
+ ] |
+ }], |
+ ], |
+ }, |
] |
} |