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

Unified Diff: components/plugins.gypi

Issue 266103002: components: Eliminate ios checks from individual gyp include files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/navigation_interception.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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',
+ ]
+ }],
+ ],
+ },
]
}
« no previous file with comments | « components/navigation_interception.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698