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 11 matching lines...) Expand all Loading... |
22 '../webkit/support/webkit_support.gyp:glue', | 22 '../webkit/support/webkit_support.gyp:glue', |
23 '../webkit/support/webkit_support.gyp:webkit_media', | 23 '../webkit/support/webkit_support.gyp:webkit_media', |
24 '../webkit/support/webkit_support.gyp:webkit_gpu', | 24 '../webkit/support/webkit_support.gyp:webkit_gpu', |
25 ], | 25 ], |
26 'include_dirs': [ | 26 'include_dirs': [ |
27 '..', | 27 '..', |
28 ], | 28 ], |
29 'sources': [ | 29 'sources': [ |
30 'public/renderer/content_renderer_client.cc', | 30 'public/renderer/content_renderer_client.cc', |
31 'public/renderer/content_renderer_client.h', | 31 'public/renderer/content_renderer_client.h', |
| 32 'public/renderer/context_menu_client.h', |
32 'public/renderer/document_state.cc', | 33 'public/renderer/document_state.cc', |
33 'public/renderer/document_state.h', | 34 'public/renderer/document_state.h', |
34 'public/renderer/navigation_state.cc', | 35 'public/renderer/navigation_state.cc', |
35 'public/renderer/navigation_state.h', | 36 'public/renderer/navigation_state.h', |
36 'public/renderer/password_form_conversion_utils.h', | 37 'public/renderer/password_form_conversion_utils.h', |
37 'public/renderer/render_process_observer.cc', | 38 'public/renderer/render_process_observer.cc', |
38 'public/renderer/render_process_observer.h', | 39 'public/renderer/render_process_observer.h', |
39 'public/renderer/render_thread.cc', | 40 'public/renderer/render_thread.cc', |
40 'public/renderer/render_thread.h', | 41 'public/renderer/render_thread.h', |
41 'public/renderer/render_view.h', | 42 'public/renderer/render_view.h', |
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
372 }], | 373 }], |
373 ], | 374 ], |
374 'target_conditions': [ | 375 'target_conditions': [ |
375 ['OS=="android"', { | 376 ['OS=="android"', { |
376 'sources/': [ | 377 'sources/': [ |
377 ['include', '^renderer/render_view_linux\\.cc$'], | 378 ['include', '^renderer/render_view_linux\\.cc$'], |
378 ], | 379 ], |
379 }], | 380 }], |
380 ], | 381 ], |
381 } | 382 } |
OLD | NEW |