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

Side by Side Diff: content/content_renderer.gypi

Issue 11826005: Browser Plugin: Implement BrowserPluginObserver. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 '../jingle/jingle.gyp:jingle_glue', 7 '../jingle/jingle.gyp:jingle_glue',
8 '../net/net.gyp:net', 8 '../net/net.gyp:net',
9 '../skia/skia.gyp:skia', 9 '../skia/skia.gyp:skia',
10 '../third_party/hyphen/hyphen.gyp:hyphen', 10 '../third_party/hyphen/hyphen.gyp:hyphen',
11 '../third_party/icu/icu.gyp:icuuc', 11 '../third_party/icu/icu.gyp:icuuc',
12 '../third_party/icu/icu.gyp:icui18n', 12 '../third_party/icu/icu.gyp:icui18n',
13 '../third_party/libjingle/libjingle.gyp:libjingle', 13 '../third_party/libjingle/libjingle.gyp:libjingle',
14 '../third_party/npapi/npapi.gyp:npapi', 14 '../third_party/npapi/npapi.gyp:npapi',
15 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', 15 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit',
16 '../ui/native_theme/native_theme.gyp:native_theme', 16 '../ui/native_theme/native_theme.gyp:native_theme',
17 '../ui/surface/surface.gyp:surface', 17 '../ui/surface/surface.gyp:surface',
18 '../v8/tools/gyp/v8.gyp:v8', 18 '../v8/tools/gyp/v8.gyp:v8',
19 '../webkit/support/webkit_support.gyp:glue', 19 '../webkit/support/webkit_support.gyp:glue',
20 '../webkit/support/webkit_support.gyp:webkit_media', 20 '../webkit/support/webkit_support.gyp:webkit_media',
21 '../webkit/support/webkit_support.gyp:webkit_gpu', 21 '../webkit/support/webkit_support.gyp:webkit_gpu',
22 ], 22 ],
23 'include_dirs': [ 23 'include_dirs': [
24 '..', 24 '..',
25 ], 25 ],
26 'sources': [ 26 'sources': [
27 'public/renderer/android_content_detection_prefixes.cc', 27 'public/renderer/android_content_detection_prefixes.cc',
28 'public/renderer/android_content_detection_prefixes.h', 28 'public/renderer/android_content_detection_prefixes.h',
29 'public/renderer/browser_plugin/browser_plugin.h',
30 'public/renderer/browser_plugin/browser_plugin_observer.cc',
31 'public/renderer/browser_plugin/browser_plugin_observer.h',
32 'public/renderer/browser_plugin/browser_plugin_method_binding.h',
33 'public/renderer/browser_plugin/browser_plugin_property_binding.h',
29 'public/renderer/content_renderer_client.cc', 34 'public/renderer/content_renderer_client.cc',
30 'public/renderer/content_renderer_client.h', 35 'public/renderer/content_renderer_client.h',
31 'public/renderer/context_menu_client.h', 36 'public/renderer/context_menu_client.h',
32 'public/renderer/document_state.cc', 37 'public/renderer/document_state.cc',
33 'public/renderer/document_state.h', 38 'public/renderer/document_state.h',
34 'public/renderer/navigation_state.cc', 39 'public/renderer/navigation_state.cc',
35 'public/renderer/navigation_state.h', 40 'public/renderer/navigation_state.h',
36 'public/renderer/password_form_conversion_utils.h', 41 'public/renderer/password_form_conversion_utils.h',
37 'public/renderer/renderer_ppapi_host.h', 42 'public/renderer/renderer_ppapi_host.h',
38 'public/renderer/render_process_observer.cc', 43 'public/renderer/render_process_observer.cc',
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 'renderer/pepper/pepper_proxy_channel_delegate_impl.cc', 207 'renderer/pepper/pepper_proxy_channel_delegate_impl.cc',
203 'renderer/pepper/pepper_proxy_channel_delegate_impl.h', 208 'renderer/pepper/pepper_proxy_channel_delegate_impl.h',
204 'renderer/pepper/pepper_video_capture_host.cc', 209 'renderer/pepper/pepper_video_capture_host.cc',
205 'renderer/pepper/pepper_video_capture_host.h', 210 'renderer/pepper/pepper_video_capture_host.h',
206 'renderer/pepper/pepper_websocket_host.cc', 211 'renderer/pepper/pepper_websocket_host.cc',
207 'renderer/pepper/pepper_websocket_host.h', 212 'renderer/pepper/pepper_websocket_host.h',
208 'renderer/pepper/renderer_ppapi_host_impl.cc', 213 'renderer/pepper/renderer_ppapi_host_impl.cc',
209 'renderer/pepper/renderer_ppapi_host_impl.h', 214 'renderer/pepper/renderer_ppapi_host_impl.h',
210 'renderer/plugin_channel_host.cc', 215 'renderer/plugin_channel_host.cc',
211 'renderer/plugin_channel_host.h', 216 'renderer/plugin_channel_host.h',
212 'renderer/browser_plugin/browser_plugin.cc',
213 'renderer/browser_plugin/browser_plugin.h',
214 'renderer/browser_plugin/browser_plugin_backing_store.h', 217 'renderer/browser_plugin/browser_plugin_backing_store.h',
215 'renderer/browser_plugin/browser_plugin_backing_store.cc', 218 'renderer/browser_plugin/browser_plugin_backing_store.cc',
216 'renderer/browser_plugin/browser_plugin_bindings.h', 219 'renderer/browser_plugin/browser_plugin_bindings.h',
217 'renderer/browser_plugin/browser_plugin_bindings.cc', 220 'renderer/browser_plugin/browser_plugin_bindings.cc',
221 'renderer/browser_plugin/browser_plugin_impl.cc',
222 'renderer/browser_plugin/browser_plugin_impl.h',
218 'renderer/browser_plugin/browser_plugin_manager.h', 223 'renderer/browser_plugin/browser_plugin_manager.h',
219 'renderer/browser_plugin/browser_plugin_manager.cc', 224 'renderer/browser_plugin/browser_plugin_manager.cc',
220 'renderer/browser_plugin/browser_plugin_manager_factory.h', 225 'renderer/browser_plugin/browser_plugin_manager_factory.h',
221 'renderer/browser_plugin/browser_plugin_manager_impl.h', 226 'renderer/browser_plugin/browser_plugin_manager_impl.h',
222 'renderer/browser_plugin/browser_plugin_manager_impl.cc', 227 'renderer/browser_plugin/browser_plugin_manager_impl.cc',
223 'renderer/render_process.h', 228 'renderer/render_process.h',
224 'renderer/render_process_impl.cc', 229 'renderer/render_process_impl.cc',
225 'renderer/render_process_impl.h', 230 'renderer/render_process_impl.h',
226 'renderer/render_thread_impl.cc', 231 'renderer/render_thread_impl.cc',
227 'renderer/render_thread_impl.h', 232 'renderer/render_thread_impl.h',
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
407 }], 412 }],
408 ], 413 ],
409 'target_conditions': [ 414 'target_conditions': [
410 ['OS=="android"', { 415 ['OS=="android"', {
411 'sources/': [ 416 'sources/': [
412 ['include', '^renderer/render_view_linux\\.cc$'], 417 ['include', '^renderer/render_view_linux\\.cc$'],
413 ], 418 ],
414 }], 419 }],
415 ], 420 ],
416 } 421 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698