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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/components.gyp ('k') | components/plugins/OWNERS » ('j') | 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
new file mode 100644
index 0000000000000000000000000000000000000000..1dd2b68e13b3fb0afa53be2fd3892139b2ebe56f
--- /dev/null
+++ b/components/plugins.gypi
@@ -0,0 +1,36 @@
+# Copyright (c) 2013 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'targets': [
+ {
+ '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
+ 'type': 'static_library',
+ 'dependencies': [
+ '../skia/skia.gyp:skia',
+ '../third_party/re2/re2.gyp:re2',
+ '../third_party/WebKit/public/blink.gyp:blink',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ 'plugins/renderer/plugin_placeholder.cc',
+ 'plugins/renderer/plugin_placeholder.h',
+ # '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
+ 'plugins/renderer/plugin_uma.cc',
+ 'plugins/renderer/plugin_uma.h',
+ 'plugins/renderer/webview_plugin.cc',
+ 'plugins/renderer/webview_plugin.h',
+ ],
+ 'conditions' : [
+ ['OS=="android"', {
+ 'defines': [
+ 'ENABLE_MOBILE_YOUTUBE_PLUGIN',
+ ],
+ }],
+ ],
+ },
+ ]
+}
« 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