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/support/webkit_support.gyp:glue', | 20 '../webkit/support/webkit_support.gyp:glue', |
20 '../webkit/support/webkit_support.gyp:webkit_media', | 21 '../webkit/support/webkit_support.gyp:webkit_media', |
21 '../webkit/support/webkit_support.gyp:webkit_gpu', | 22 '../webkit/support/webkit_support.gyp:webkit_gpu', |
22 ], | 23 ], |
23 'include_dirs': [ | 24 'include_dirs': [ |
24 '..', | 25 '..', |
25 ], | 26 ], |
26 'sources': [ | 27 'sources': [ |
27 'public/renderer/android_content_detection_prefixes.cc', | 28 'public/renderer/android_content_detection_prefixes.cc', |
28 'public/renderer/android_content_detection_prefixes.h', | 29 'public/renderer/android_content_detection_prefixes.h', |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 'renderer/browser_plugin/browser_plugin.h', | 212 'renderer/browser_plugin/browser_plugin.h', |
212 'renderer/browser_plugin/browser_plugin_backing_store.h', | 213 'renderer/browser_plugin/browser_plugin_backing_store.h', |
213 'renderer/browser_plugin/browser_plugin_backing_store.cc', | 214 'renderer/browser_plugin/browser_plugin_backing_store.cc', |
214 'renderer/browser_plugin/browser_plugin_bindings.h', | 215 'renderer/browser_plugin/browser_plugin_bindings.h', |
215 'renderer/browser_plugin/browser_plugin_bindings.cc', | 216 'renderer/browser_plugin/browser_plugin_bindings.cc', |
216 'renderer/browser_plugin/browser_plugin_manager.h', | 217 'renderer/browser_plugin/browser_plugin_manager.h', |
217 'renderer/browser_plugin/browser_plugin_manager.cc', | 218 'renderer/browser_plugin/browser_plugin_manager.cc', |
218 'renderer/browser_plugin/browser_plugin_manager_factory.h', | 219 'renderer/browser_plugin/browser_plugin_manager_factory.h', |
219 'renderer/browser_plugin/browser_plugin_manager_impl.h', | 220 'renderer/browser_plugin/browser_plugin_manager_impl.h', |
220 'renderer/browser_plugin/browser_plugin_manager_impl.cc', | 221 'renderer/browser_plugin/browser_plugin_manager_impl.cc', |
| 222 'renderer/browser_plugin/browser_plugin_compositing_helper.h', |
| 223 'renderer/browser_plugin/browser_plugin_compositing_helper.cc', |
221 'renderer/render_process.h', | 224 'renderer/render_process.h', |
222 'renderer/render_process_impl.cc', | 225 'renderer/render_process_impl.cc', |
223 'renderer/render_process_impl.h', | 226 'renderer/render_process_impl.h', |
224 'renderer/render_thread_impl.cc', | 227 'renderer/render_thread_impl.cc', |
225 'renderer/render_thread_impl.h', | 228 'renderer/render_thread_impl.h', |
226 'renderer/render_view_impl.cc', | 229 'renderer/render_view_impl.cc', |
227 'renderer/render_view_impl.h', | 230 'renderer/render_view_impl.h', |
228 'renderer/render_view_impl_android.cc', | 231 'renderer/render_view_impl_android.cc', |
229 'renderer/render_view_impl_params.cc', | 232 'renderer/render_view_impl_params.cc', |
230 'renderer/render_view_impl_params.h', | 233 'renderer/render_view_impl_params.h', |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
405 }], | 408 }], |
406 ], | 409 ], |
407 'target_conditions': [ | 410 'target_conditions': [ |
408 ['OS=="android"', { | 411 ['OS=="android"', { |
409 'sources/': [ | 412 'sources/': [ |
410 ['include', '^renderer/render_view_linux\\.cc$'], | 413 ['include', '^renderer/render_view_linux\\.cc$'], |
411 ], | 414 ], |
412 }], | 415 }], |
413 ], | 416 ], |
414 } | 417 } |
OLD | NEW |