| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 'shell/shell_content_renderer_client.cc', | 62 'shell/shell_content_renderer_client.cc', |
| 63 'shell/shell_content_renderer_client.h', | 63 'shell/shell_content_renderer_client.h', |
| 64 'shell/shell_content_utility_client.cc', | 64 'shell/shell_content_utility_client.cc', |
| 65 'shell/shell_content_utility_client.h', | 65 'shell/shell_content_utility_client.h', |
| 66 'shell/shell_devtools_delegate.cc', | 66 'shell/shell_devtools_delegate.cc', |
| 67 'shell/shell_devtools_delegate.h', | 67 'shell/shell_devtools_delegate.h', |
| 68 'shell/shell_download_manager_delegate.cc', | 68 'shell/shell_download_manager_delegate.cc', |
| 69 'shell/shell_download_manager_delegate.h', | 69 'shell/shell_download_manager_delegate.h', |
| 70 'shell/shell_main_delegate.cc', | 70 'shell/shell_main_delegate.cc', |
| 71 'shell/shell_main_delegate.h', | 71 'shell/shell_main_delegate.h', |
| 72 'shell/shell_messages.cc', |
| 73 'shell/shell_messages.h', |
| 74 'shell/shell_render_view_host_observer.cc', |
| 75 'shell/shell_render_view_host_observer.h', |
| 72 'shell/shell_render_view_observer.cc', | 76 'shell/shell_render_view_observer.cc', |
| 73 'shell/shell_render_view_observer.h', | 77 'shell/shell_render_view_observer.h', |
| 74 'shell/shell_resource_context.cc', | 78 'shell/shell_resource_context.cc', |
| 75 'shell/shell_resource_context.h', | 79 'shell/shell_resource_context.h', |
| 80 'shell/shell_switches.cc', |
| 81 'shell/shell_switches.h', |
| 76 'shell/shell_url_request_context_getter.cc', | 82 'shell/shell_url_request_context_getter.cc', |
| 77 'shell/shell_url_request_context_getter.h', | 83 'shell/shell_url_request_context_getter.h', |
| 78 ], | 84 ], |
| 79 'msvs_settings': { | 85 'msvs_settings': { |
| 80 'VCLinkerTool': { | 86 'VCLinkerTool': { |
| 81 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 87 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 82 }, | 88 }, |
| 83 }, | 89 }, |
| 84 'conditions': [ | 90 'conditions': [ |
| 85 ['OS=="win" and win_use_allocator_shim==1', { | 91 ['OS=="win" and win_use_allocator_shim==1', { |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 }], | 232 }], |
| 227 ['toolkit_uses_gtk == 1', { | 233 ['toolkit_uses_gtk == 1', { |
| 228 'dependencies': [ | 234 'dependencies': [ |
| 229 '<(DEPTH)/build/linux/system.gyp:gtk', | 235 '<(DEPTH)/build/linux/system.gyp:gtk', |
| 230 ], | 236 ], |
| 231 }], | 237 }], |
| 232 ], | 238 ], |
| 233 }, | 239 }, |
| 234 ], | 240 ], |
| 235 } | 241 } |
| OLD | NEW |