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

Side by Side Diff: components/plugins.gypi

Issue 23606022: Move renderer plugin code into a new component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 3 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
« no previous file with comments | « components/components.gyp ('k') | components/plugins/OWNERS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 'target_name': 'plugins_renderer',
darin (slow to review) 2013/10/01 17:22:59 I find the name "plugins_renderer" a bit confusing
aberent 2013/10/01 18:14:55 I originally called it just "plugins" but didn't w
9 'type': 'static_library',
10 'dependencies': [
11 '../skia/skia.gyp:skia',
12 '../third_party/re2/re2.gyp:re2',
13 '../third_party/WebKit/public/blink.gyp:blink',
14 ],
15 'include_dirs': [
16 '..',
17 ],
18 'sources': [
19 'plugins/renderer/plugin_placeholder.cc',
20 'plugins/renderer/plugin_placeholder.h',
21 # 'plugins/renderer/plugin_uma_unittest.cc',
darin (slow to review) 2013/10/01 17:22:59 nit: delete this commented out line?
aberent 2013/10/01 18:14:55 Done. You appear to be looking at patch set 1. Thi
22 'plugins/renderer/plugin_uma.cc',
23 'plugins/renderer/plugin_uma.h',
24 'plugins/renderer/webview_plugin.cc',
25 'plugins/renderer/webview_plugin.h',
26 ],
27 'conditions' : [
28 ['OS=="android"', {
29 'defines': [
30 'ENABLE_MOBILE_YOUTUBE_PLUGIN',
31 ],
32 }],
33 ],
34 },
35 ]
36 }
OLDNEW
« no previous file with comments | « components/components.gyp ('k') | components/plugins/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698