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

Side by Side Diff: components/plugins.gypi

Issue 116163008: Move the plugin placeholder from CppBoundClass to gin::Wrappable (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: updates Created 6 years, 11 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 | « chrome/renderer/plugins/chrome_plugin_placeholder.cc ('k') | components/plugins/renderer/DEPS » ('j') | 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 'conditions': [
7 ['OS != "ios"', { 7 ['OS != "ios"', {
8 8
9 'targets': [ 9 'targets': [
10 { 10 {
11 'target_name': 'plugins_renderer', 11 'target_name': 'plugins_renderer',
12 'type': 'static_library', 12 'type': 'static_library',
13 'dependencies': [ 13 'dependencies': [
14 '../gin/gin.gyp:gin',
14 '../skia/skia.gyp:skia', 15 '../skia/skia.gyp:skia',
15 '../third_party/re2/re2.gyp:re2', 16 '../third_party/re2/re2.gyp:re2',
16 '../third_party/WebKit/public/blink.gyp:blink', 17 '../third_party/WebKit/public/blink.gyp:blink',
18 '../v8/tools/gyp/v8.gyp:v8',
17 ], 19 ],
18 'include_dirs': [ 20 'include_dirs': [
19 '..', 21 '..',
20 ], 22 ],
21 'sources': [ 23 'sources': [
22 'plugins/renderer/plugin_placeholder.cc', 24 'plugins/renderer/plugin_placeholder.cc',
23 'plugins/renderer/plugin_placeholder.h', 25 'plugins/renderer/plugin_placeholder.h',
24 'plugins/renderer/webview_plugin.cc', 26 'plugins/renderer/webview_plugin.cc',
25 'plugins/renderer/webview_plugin.h', 27 'plugins/renderer/webview_plugin.h',
26 ], 28 ],
27 'conditions' : [ 29 'conditions' : [
28 ['OS=="android"', { 30 ['OS=="android"', {
29 'sources': [ 31 'sources': [
30 'plugins/renderer/mobile_youtube_plugin.cc', 32 'plugins/renderer/mobile_youtube_plugin.cc',
31 'plugins/renderer/mobile_youtube_plugin.h', 33 'plugins/renderer/mobile_youtube_plugin.h',
32 ] 34 ]
33 }], 35 }],
34 ], 36 ],
35 }, 37 },
36 ] 38 ]
37 }] 39 }]
38 ] 40 ]
39 } 41 }
OLDNEW
« no previous file with comments | « chrome/renderer/plugins/chrome_plugin_placeholder.cc ('k') | components/plugins/renderer/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698