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

Unified Diff: content/content_common.gypi

Issue 19761007: Move NPAPI implementation out of webkit/plugins/npapi and into content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix mac Created 7 years, 5 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
Index: content/content_common.gypi
===================================================================
--- content/content_common.gypi (revision 212369)
+++ content/content_common.gypi (working copy)
@@ -290,6 +290,13 @@
'common/pepper_renderer_instance_data.h',
'common/plugin_carbon_interpose_constants_mac.cc',
'common/plugin_carbon_interpose_constants_mac.h',
+ 'common/plugin_constants_win.cc',
+ 'common/plugin_constants_win.h',
+ 'common/plugin_list.cc',
+ 'common/plugin_list.h',
+ 'common/plugin_list_mac.mm',
+ 'common/plugin_list_posix.cc',
+ 'common/plugin_list_win.cc',
'common/plugin_process_messages.h',
'common/process_type.cc',
'common/quota_messages.h',
@@ -330,6 +337,8 @@
'common/utility_messages.h',
'common/view_messages.h',
'common/view_message_enums.h',
+ 'common/webplugin_geometry.cc',
+ 'common/webplugin_geometry.h',
'common/websocket.h',
'common/websocket_messages.h',
'common/worker_messages.h',
@@ -385,6 +394,16 @@
'../webkit/support/webkit_support.gyp:glue',
],
}],
+ ['OS=="mac"', {
+ 'sources!': [
+ 'common/plugin_list_posix.cc',
+ ],
+ 'link_settings': {
+ 'libraries': [
+ '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework',
+ ],
+ },
+ }],
['OS=="android"',{
'link_settings': {
'libraries': [

Powered by Google App Engine
This is Rietveld 408576698