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

Side by Side 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, 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « components/navigation_interception.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 { 5 {
6 'conditions': [ 6 'targets': [
7 ['OS != "ios"', { 7 {
8 8 'target_name': 'plugins_renderer',
9 'targets': [ 9 'type': 'static_library',
10 { 10 'dependencies': [
11 'target_name': 'plugins_renderer', 11 '../gin/gin.gyp:gin',
12 'type': 'static_library', 12 '../skia/skia.gyp:skia',
13 'dependencies': [ 13 '../third_party/WebKit/public/blink.gyp:blink',
14 '../third_party/re2/re2.gyp:re2', 14 '../third_party/re2/re2.gyp:re2',
15 '../gin/gin.gyp:gin', 15 '../v8/tools/gyp/v8.gyp:v8',
16 '../skia/skia.gyp:skia', 16 ],
17 '../third_party/WebKit/public/blink.gyp:blink', 17 'include_dirs': [
18 '../v8/tools/gyp/v8.gyp:v8', 18 '..',
19 ], 19 ],
20 'include_dirs': [ 20 'sources': [
21 '..', 21 'plugins/renderer/plugin_placeholder.cc',
22 ], 22 'plugins/renderer/plugin_placeholder.h',
23 'plugins/renderer/webview_plugin.cc',
24 'plugins/renderer/webview_plugin.h',
25 ],
26 'conditions' : [
27 ['OS=="android"', {
23 'sources': [ 28 'sources': [
24 'plugins/renderer/plugin_placeholder.cc', 29 'plugins/renderer/mobile_youtube_plugin.cc',
25 'plugins/renderer/plugin_placeholder.h', 30 'plugins/renderer/mobile_youtube_plugin.h',
26 'plugins/renderer/webview_plugin.cc', 31 ]
27 'plugins/renderer/webview_plugin.h', 32 }],
28 ], 33 ],
29 'conditions' : [ 34 },
30 ['OS=="android"', {
31 'sources': [
32 'plugins/renderer/mobile_youtube_plugin.cc',
33 'plugins/renderer/mobile_youtube_plugin.h',
34 ]
35 }],
36 ],
37 },
38 ]
39 }]
40 ] 35 ]
41 } 36 }
OLDNEW
« 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