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

Side by Side Diff: content/content_child.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 unified diff | Download patch | Annotate | Revision Log
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 'dependencies': [ 6 'dependencies': [
7 '../base/base.gyp:base', 7 '../base/base.gyp:base',
8 '../components/tracing.gyp:tracing', 8 '../components/tracing.gyp:tracing',
9 '../ui/ui.gyp:ui', 9 '../ui/ui.gyp:ui',
10 '../url/url.gyp:url_lib', 10 '../url/url.gyp:url_lib',
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 'child/indexed_db/indexed_db_dispatcher.cc', 48 'child/indexed_db/indexed_db_dispatcher.cc',
49 'child/indexed_db/indexed_db_dispatcher.h', 49 'child/indexed_db/indexed_db_dispatcher.h',
50 'child/indexed_db/indexed_db_message_filter.cc', 50 'child/indexed_db/indexed_db_message_filter.cc',
51 'child/indexed_db/indexed_db_message_filter.h', 51 'child/indexed_db/indexed_db_message_filter.h',
52 'child/indexed_db/proxy_webidbcursor_impl.cc', 52 'child/indexed_db/proxy_webidbcursor_impl.cc',
53 'child/indexed_db/proxy_webidbcursor_impl.h', 53 'child/indexed_db/proxy_webidbcursor_impl.h',
54 'child/indexed_db/proxy_webidbdatabase_impl.cc', 54 'child/indexed_db/proxy_webidbdatabase_impl.cc',
55 'child/indexed_db/proxy_webidbdatabase_impl.h', 55 'child/indexed_db/proxy_webidbdatabase_impl.h',
56 'child/indexed_db/proxy_webidbfactory_impl.cc', 56 'child/indexed_db/proxy_webidbfactory_impl.cc',
57 'child/indexed_db/proxy_webidbfactory_impl.h', 57 'child/indexed_db/proxy_webidbfactory_impl.h',
58 'child/npapi/plugin_host.cc',
59 'child/npapi/plugin_host.h',
60 'child/npapi/plugin_instance.cc',
61 'child/npapi/plugin_instance.h',
62 'child/npapi/plugin_instance_mac.mm',
63 'child/npapi/plugin_lib.cc',
64 'child/npapi/plugin_lib.h',
65 'child/npapi/plugin_stream.cc',
66 'child/npapi/plugin_stream.h',
67 'child/npapi/plugin_stream_posix.cc',
68 'child/npapi/plugin_stream_url.cc',
69 'child/npapi/plugin_stream_url.h',
70 'child/npapi/plugin_stream_win.cc',
71 'child/npapi/plugin_string_stream.cc',
72 'child/npapi/plugin_string_stream.h',
73 'child/npapi/plugin_web_event_converter_mac.h',
74 'child/npapi/plugin_web_event_converter_mac.mm',
75 'child/npapi/webplugin.h',
76 'child/npapi/webplugin_accelerated_surface_mac.h',
77 'child/npapi/webplugin_delegate.h',
78 'child/npapi/webplugin_delegate_impl.cc',
79 'child/npapi/webplugin_delegate_impl.h',
80 'child/npapi/webplugin_delegate_impl_android.cc',
81 'child/npapi/webplugin_delegate_impl_aura.cc',
82 'child/npapi/webplugin_delegate_impl_gtk.cc',
83 'child/npapi/webplugin_delegate_impl_mac.mm',
84 'child/npapi/webplugin_delegate_impl_win.cc',
85 'child/npapi/webplugin_ime_win.cc',
86 'child/npapi/webplugin_ime_win.h',
58 'child/np_channel_base.cc', 87 'child/np_channel_base.cc',
59 'child/np_channel_base.h', 88 'child/np_channel_base.h',
60 'child/npobject_base.h', 89 'child/npobject_base.h',
61 'child/npobject_proxy.cc', 90 'child/npobject_proxy.cc',
62 'child/npobject_proxy.h', 91 'child/npobject_proxy.h',
63 'child/npruntime_util.cc', 92 'child/npruntime_util.cc',
64 'child/npruntime_util.h', 93 'child/npruntime_util.h',
65 'child/npobject_stub.cc', 94 'child/npobject_stub.cc',
66 'child/npobject_stub.h', 95 'child/npobject_stub.h',
67 'child/npobject_util.cc', 96 'child/npobject_util.cc',
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 ['exclude', '\\.(cc|mm)$'], 134 ['exclude', '\\.(cc|mm)$'],
106 ], 135 ],
107 }, { # OS!="ios" 136 }, { # OS!="ios"
108 'dependencies': [ 137 'dependencies': [
109 '../third_party/WebKit/public/blink.gyp:blink', 138 '../third_party/WebKit/public/blink.gyp:blink',
110 '../third_party/npapi/npapi.gyp:npapi', 139 '../third_party/npapi/npapi.gyp:npapi',
111 '../webkit/common/webkit_common.gyp:webkit_common', 140 '../webkit/common/webkit_common.gyp:webkit_common',
112 '../webkit/support/webkit_support.gyp:glue_child', 141 '../webkit/support/webkit_support.gyp:glue_child',
113 ], 142 ],
114 }], 143 }],
144 ['use_aura==1', {
145 'sources!': [
146 'child/npapi/webplugin_delegate_impl_mac.mm',
147 ],
148 }],
149 ['use_aura==1 and OS=="win"', {
150 'sources!': [
151 'child/npapi/webplugin_delegate_impl_aura.cc',
152 ],
153 }],
115 ], 154 ],
116 } 155 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698