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 29 matching lines...) Expand all Loading... | |
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.h', | 49 'public/renderer/browser_plugin_delegate.h', |
50 'public/renderer/browser_plugin_delegate.cc', | |
Charlie Reis
2014/12/17 00:06:44
nit: .cc before .h
Fady Samuel
2014/12/17 19:30:35
Done.
| |
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', |
59 'public/renderer/renderer_ppapi_host.h', | 60 'public/renderer/renderer_ppapi_host.h', |
(...skipping 774 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
834 }], | 835 }], |
835 ], | 836 ], |
836 'target_conditions': [ | 837 'target_conditions': [ |
837 ['OS=="android"', { | 838 ['OS=="android"', { |
838 'sources/': [ | 839 'sources/': [ |
839 ['include', '^renderer/render_view_linux\\.cc$'], | 840 ['include', '^renderer/render_view_linux\\.cc$'], |
840 ], | 841 ], |
841 }], | 842 }], |
842 ], | 843 ], |
843 } | 844 } |
OLD | NEW |