OLD | NEW |
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/compositor_bindings/compositor_bindings.gyp:webkit_compositor_bin
dings', | 19 '../webkit/compositor_bindings/compositor_bindings.gyp:webkit_compositor_bin
dings', |
20 '../webkit/support/webkit_support.gyp:glue', | 20 '../webkit/support/webkit_support.gyp:glue', |
21 '../webkit/support/webkit_support.gyp:webkit_media', | 21 '../webkit/support/webkit_support.gyp:webkit_media', |
22 '../webkit/support/webkit_support.gyp:webkit_gpu', | 22 '../webkit/support/webkit_support.gyp:webkit_gpu', |
23 ], | 23 ], |
24 'include_dirs': [ | 24 'include_dirs': [ |
25 '..', | 25 '..', |
26 ], | 26 ], |
27 'sources': [ | 27 'sources': [ |
28 'public/renderer/android_content_detection_prefixes.cc', | 28 'public/renderer/android_content_detection_prefixes.cc', |
29 'public/renderer/android_content_detection_prefixes.h', | 29 'public/renderer/android_content_detection_prefixes.h', |
| 30 'public/renderer/browser_plugin/browser_plugin.h', |
| 31 'public/renderer/browser_plugin/browser_plugin_observer.cc', |
| 32 'public/renderer/browser_plugin/browser_plugin_observer.h', |
| 33 'public/renderer/browser_plugin/browser_plugin_method_binding.h', |
| 34 'public/renderer/browser_plugin/browser_plugin_property_binding.h', |
30 'public/renderer/content_renderer_client.cc', | 35 'public/renderer/content_renderer_client.cc', |
31 'public/renderer/content_renderer_client.h', | 36 'public/renderer/content_renderer_client.h', |
32 'public/renderer/context_menu_client.h', | 37 'public/renderer/context_menu_client.h', |
33 'public/renderer/document_state.cc', | 38 'public/renderer/document_state.cc', |
34 'public/renderer/document_state.h', | 39 'public/renderer/document_state.h', |
35 'public/renderer/navigation_state.cc', | 40 'public/renderer/navigation_state.cc', |
36 'public/renderer/navigation_state.h', | 41 'public/renderer/navigation_state.h', |
37 'public/renderer/password_form_conversion_utils.h', | 42 'public/renderer/password_form_conversion_utils.h', |
38 'public/renderer/renderer_ppapi_host.h', | 43 'public/renderer/renderer_ppapi_host.h', |
39 'public/renderer/render_process_observer.cc', | 44 'public/renderer/render_process_observer.cc', |
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 'renderer/pepper/pepper_proxy_channel_delegate_impl.cc', | 216 'renderer/pepper/pepper_proxy_channel_delegate_impl.cc', |
212 'renderer/pepper/pepper_proxy_channel_delegate_impl.h', | 217 'renderer/pepper/pepper_proxy_channel_delegate_impl.h', |
213 'renderer/pepper/pepper_video_capture_host.cc', | 218 'renderer/pepper/pepper_video_capture_host.cc', |
214 'renderer/pepper/pepper_video_capture_host.h', | 219 'renderer/pepper/pepper_video_capture_host.h', |
215 'renderer/pepper/pepper_websocket_host.cc', | 220 'renderer/pepper/pepper_websocket_host.cc', |
216 'renderer/pepper/pepper_websocket_host.h', | 221 'renderer/pepper/pepper_websocket_host.h', |
217 'renderer/pepper/renderer_ppapi_host_impl.cc', | 222 'renderer/pepper/renderer_ppapi_host_impl.cc', |
218 'renderer/pepper/renderer_ppapi_host_impl.h', | 223 'renderer/pepper/renderer_ppapi_host_impl.h', |
219 'renderer/plugin_channel_host.cc', | 224 'renderer/plugin_channel_host.cc', |
220 'renderer/plugin_channel_host.h', | 225 'renderer/plugin_channel_host.h', |
221 'renderer/browser_plugin/browser_plugin.cc', | |
222 'renderer/browser_plugin/browser_plugin.h', | |
223 'renderer/browser_plugin/browser_plugin_backing_store.h', | 226 'renderer/browser_plugin/browser_plugin_backing_store.h', |
224 'renderer/browser_plugin/browser_plugin_backing_store.cc', | 227 'renderer/browser_plugin/browser_plugin_backing_store.cc', |
225 'renderer/browser_plugin/browser_plugin_bindings.h', | 228 'renderer/browser_plugin/browser_plugin_bindings.h', |
226 'renderer/browser_plugin/browser_plugin_bindings.cc', | 229 'renderer/browser_plugin/browser_plugin_bindings.cc', |
| 230 'renderer/browser_plugin/browser_plugin_impl.cc', |
| 231 'renderer/browser_plugin/browser_plugin_impl.h', |
227 'renderer/browser_plugin/browser_plugin_manager.h', | 232 'renderer/browser_plugin/browser_plugin_manager.h', |
228 'renderer/browser_plugin/browser_plugin_manager.cc', | 233 'renderer/browser_plugin/browser_plugin_manager.cc', |
229 'renderer/browser_plugin/browser_plugin_manager_factory.h', | 234 'renderer/browser_plugin/browser_plugin_manager_factory.h', |
230 'renderer/browser_plugin/browser_plugin_manager_impl.h', | 235 'renderer/browser_plugin/browser_plugin_manager_impl.h', |
231 'renderer/browser_plugin/browser_plugin_manager_impl.cc', | 236 'renderer/browser_plugin/browser_plugin_manager_impl.cc', |
232 'renderer/browser_plugin/browser_plugin_compositing_helper.h', | 237 'renderer/browser_plugin/browser_plugin_compositing_helper.h', |
233 'renderer/browser_plugin/browser_plugin_compositing_helper.cc', | 238 'renderer/browser_plugin/browser_plugin_compositing_helper.cc', |
234 'renderer/browser_plugin/browser_plugin_constants.cc', | 239 'renderer/browser_plugin/browser_plugin_constants.cc', |
235 'renderer/browser_plugin/browser_plugin_constants.h', | 240 'renderer/browser_plugin/browser_plugin_constants.h', |
236 'renderer/date_time_formatter.cc', | 241 'renderer/date_time_formatter.cc', |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
420 }], | 425 }], |
421 ], | 426 ], |
422 'target_conditions': [ | 427 'target_conditions': [ |
423 ['OS=="android"', { | 428 ['OS=="android"', { |
424 'sources/': [ | 429 'sources/': [ |
425 ['include', '^renderer/render_view_linux\\.cc$'], | 430 ['include', '^renderer/render_view_linux\\.cc$'], |
426 ], | 431 ], |
427 }], | 432 }], |
428 ], | 433 ], |
429 } | 434 } |
OLD | NEW |