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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'content_shell_lib', | 8 'target_name': 'content_shell_lib', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'defines!': ['CONTENT_IMPLEMENTATION'], | 10 'defines!': ['CONTENT_IMPLEMENTATION'], |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 'shell/shell_content_plugin_client.cc', | 59 'shell/shell_content_plugin_client.cc', |
60 'shell/shell_content_plugin_client.h', | 60 'shell/shell_content_plugin_client.h', |
61 'shell/shell_content_renderer_client.cc', | 61 'shell/shell_content_renderer_client.cc', |
62 'shell/shell_content_renderer_client.h', | 62 'shell/shell_content_renderer_client.h', |
63 'shell/shell_content_utility_client.cc', | 63 'shell/shell_content_utility_client.cc', |
64 'shell/shell_content_utility_client.h', | 64 'shell/shell_content_utility_client.h', |
65 'shell/shell_download_manager_delegate.cc', | 65 'shell/shell_download_manager_delegate.cc', |
66 'shell/shell_download_manager_delegate.h', | 66 'shell/shell_download_manager_delegate.h', |
67 'shell/shell_main_delegate.cc', | 67 'shell/shell_main_delegate.cc', |
68 'shell/shell_main_delegate.h', | 68 'shell/shell_main_delegate.h', |
| 69 'shell/shell_messages.cc', |
| 70 'shell/shell_messages.h', |
| 71 'shell/shell_render_view_host_observer.cc', |
| 72 'shell/shell_render_view_host_observer.h', |
69 'shell/shell_render_view_observer.cc', | 73 'shell/shell_render_view_observer.cc', |
70 'shell/shell_render_view_observer.h', | 74 'shell/shell_render_view_observer.h', |
71 'shell/shell_resource_context.cc', | 75 'shell/shell_resource_context.cc', |
72 'shell/shell_resource_context.h', | 76 'shell/shell_resource_context.h', |
| 77 'shell/shell_switches.cc', |
| 78 'shell/shell_switches.h', |
73 'shell/shell_url_request_context_getter.cc', | 79 'shell/shell_url_request_context_getter.cc', |
74 'shell/shell_url_request_context_getter.h', | 80 'shell/shell_url_request_context_getter.h', |
75 ], | 81 ], |
76 'msvs_settings': { | 82 'msvs_settings': { |
77 'VCLinkerTool': { | 83 'VCLinkerTool': { |
78 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 84 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
79 }, | 85 }, |
80 }, | 86 }, |
81 'conditions': [ | 87 'conditions': [ |
82 ['OS=="win" and win_use_allocator_shim==1', { | 88 ['OS=="win" and win_use_allocator_shim==1', { |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 }], | 198 }], |
193 ['toolkit_uses_gtk == 1', { | 199 ['toolkit_uses_gtk == 1', { |
194 'dependencies': [ | 200 'dependencies': [ |
195 '<(DEPTH)/build/linux/system.gyp:gtk', | 201 '<(DEPTH)/build/linux/system.gyp:gtk', |
196 ], | 202 ], |
197 }], | 203 }], |
198 ], | 204 ], |
199 }, | 205 }, |
200 ], | 206 ], |
201 } | 207 } |
OLD | NEW |