| 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 '../base/base.gyp:base', | 7 '../base/base.gyp:base', |
| 8 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_ann
otations', | 8 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_ann
otations', |
| 9 '../cc/cc.gyp:cc', | 9 '../cc/cc.gyp:cc', |
| 10 '../cc/blink/cc_blink.gyp:cc_blink', | 10 '../cc/blink/cc_blink.gyp:cc_blink', |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 'content_common_mojo_bindings.gyp:content_common_mojo_bindings', | 39 'content_common_mojo_bindings.gyp:content_common_mojo_bindings', |
| 40 ], | 40 ], |
| 41 'include_dirs': [ | 41 'include_dirs': [ |
| 42 '..', | 42 '..', |
| 43 '<(SHARED_INTERMEDIATE_DIR)', # Needed by key_systems.cc. | 43 '<(SHARED_INTERMEDIATE_DIR)', # Needed by key_systems.cc. |
| 44 ], | 44 ], |
| 45 'variables': { | 45 'variables': { |
| 46 'public_renderer_sources': [ | 46 'public_renderer_sources': [ |
| 47 'public/renderer/android_content_detection_prefixes.cc', | 47 'public/renderer/android_content_detection_prefixes.cc', |
| 48 'public/renderer/android_content_detection_prefixes.h', | 48 'public/renderer/android_content_detection_prefixes.h', |
| 49 'public/renderer/browser_plugin_delegate.cc', |
| 49 'public/renderer/browser_plugin_delegate.h', | 50 'public/renderer/browser_plugin_delegate.h', |
| 50 'public/renderer/content_renderer_client.cc', | 51 'public/renderer/content_renderer_client.cc', |
| 51 'public/renderer/content_renderer_client.h', | 52 'public/renderer/content_renderer_client.h', |
| 52 'public/renderer/context_menu_client.h', | 53 'public/renderer/context_menu_client.h', |
| 53 'public/renderer/document_state.cc', | 54 'public/renderer/document_state.cc', |
| 54 'public/renderer/document_state.h', | 55 'public/renderer/document_state.h', |
| 55 'public/renderer/navigation_state.cc', | 56 'public/renderer/navigation_state.cc', |
| 56 'public/renderer/navigation_state.h', | 57 'public/renderer/navigation_state.h', |
| 57 'public/renderer/pepper_plugin_instance.h', | 58 'public/renderer/pepper_plugin_instance.h', |
| 58 'public/renderer/platform_event_observer.h', | 59 'public/renderer/platform_event_observer.h', |
| (...skipping 776 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 835 }], | 836 }], |
| 836 ], | 837 ], |
| 837 'target_conditions': [ | 838 'target_conditions': [ |
| 838 ['OS=="android"', { | 839 ['OS=="android"', { |
| 839 'sources/': [ | 840 'sources/': [ |
| 840 ['include', '^renderer/render_view_linux\\.cc$'], | 841 ['include', '^renderer/render_view_linux\\.cc$'], |
| 841 ], | 842 ], |
| 842 }], | 843 }], |
| 843 ], | 844 ], |
| 844 } | 845 } |
| OLD | NEW |