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 '../ppapi/ppapi_internal.gyp:ppapi_host', | 9 '../ppapi/ppapi_internal.gyp:ppapi_host', |
10 '../ppapi/ppapi_internal.gyp:ppapi_proxy', | 10 '../ppapi/ppapi_internal.gyp:ppapi_proxy', |
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 'renderer/plugin_channel_host.cc', | 209 'renderer/plugin_channel_host.cc', |
210 'renderer/plugin_channel_host.h', | 210 'renderer/plugin_channel_host.h', |
211 'renderer/browser_plugin/browser_plugin.cc', | 211 'renderer/browser_plugin/browser_plugin.cc', |
212 'renderer/browser_plugin/browser_plugin.h', | 212 'renderer/browser_plugin/browser_plugin.h', |
213 'renderer/browser_plugin/browser_plugin_backing_store.h', | 213 'renderer/browser_plugin/browser_plugin_backing_store.h', |
214 'renderer/browser_plugin/browser_plugin_backing_store.cc', | 214 'renderer/browser_plugin/browser_plugin_backing_store.cc', |
215 'renderer/browser_plugin/browser_plugin_bindings.h', | 215 'renderer/browser_plugin/browser_plugin_bindings.h', |
216 'renderer/browser_plugin/browser_plugin_bindings.cc', | 216 'renderer/browser_plugin/browser_plugin_bindings.cc', |
217 'renderer/browser_plugin/browser_plugin_manager.h', | 217 'renderer/browser_plugin/browser_plugin_manager.h', |
218 'renderer/browser_plugin/browser_plugin_manager.cc', | 218 'renderer/browser_plugin/browser_plugin_manager.cc', |
| 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', |
221 'renderer/render_process.h', | 222 'renderer/render_process.h', |
222 'renderer/render_process_impl.cc', | 223 'renderer/render_process_impl.cc', |
223 'renderer/render_process_impl.h', | 224 'renderer/render_process_impl.h', |
224 'renderer/render_thread_impl.cc', | 225 'renderer/render_thread_impl.cc', |
225 'renderer/render_thread_impl.h', | 226 'renderer/render_thread_impl.h', |
226 'renderer/render_view_impl.cc', | 227 'renderer/render_view_impl.cc', |
227 'renderer/render_view_impl.h', | 228 'renderer/render_view_impl.h', |
228 'renderer/render_view_impl_android.cc', | 229 'renderer/render_view_impl_android.cc', |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
378 }], | 379 }], |
379 ], | 380 ], |
380 'target_conditions': [ | 381 'target_conditions': [ |
381 ['OS=="android"', { | 382 ['OS=="android"', { |
382 'sources/': [ | 383 'sources/': [ |
383 ['include', '^renderer/render_view_linux\\.cc$'], | 384 ['include', '^renderer/render_view_linux\\.cc$'], |
384 ], | 385 ], |
385 }], | 386 }], |
386 ], | 387 ], |
387 } | 388 } |
OLD | NEW |