| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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': 'apps', | 8 'target_name': 'apps', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'variables': { 'enable_wexit_time_destructors': 1, }, | 10 'variables': { 'enable_wexit_time_destructors': 1, }, |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 'shell/browser/shell_app_sorting.cc', | 130 'shell/browser/shell_app_sorting.cc', |
| 131 'shell/browser/shell_app_sorting.h', | 131 'shell/browser/shell_app_sorting.h', |
| 132 'shell/browser/shell_browser_context.cc', | 132 'shell/browser/shell_browser_context.cc', |
| 133 'shell/browser/shell_browser_context.h', | 133 'shell/browser/shell_browser_context.h', |
| 134 'shell/browser/shell_browser_main_parts.cc', | 134 'shell/browser/shell_browser_main_parts.cc', |
| 135 'shell/browser/shell_browser_main_parts.h', | 135 'shell/browser/shell_browser_main_parts.h', |
| 136 'shell/browser/shell_content_browser_client.cc', | 136 'shell/browser/shell_content_browser_client.cc', |
| 137 'shell/browser/shell_content_browser_client.h', | 137 'shell/browser/shell_content_browser_client.h', |
| 138 'shell/browser/shell_extension_system.cc', | 138 'shell/browser/shell_extension_system.cc', |
| 139 'shell/browser/shell_extension_system.h', | 139 'shell/browser/shell_extension_system.h', |
| 140 'shell/browser/shell_extension_system_factory.cc', |
| 141 'shell/browser/shell_extension_system_factory.h', |
| 140 'shell/browser/shell_extensions_browser_client.cc', | 142 'shell/browser/shell_extensions_browser_client.cc', |
| 141 'shell/browser/shell_extensions_browser_client.h', | 143 'shell/browser/shell_extensions_browser_client.h', |
| 142 'shell/browser/web_view_window.cc', | 144 'shell/browser/web_view_window.cc', |
| 143 'shell/browser/web_view_window.cc', | 145 'shell/browser/web_view_window.cc', |
| 144 'shell/common/shell_content_client.cc', | 146 'shell/common/shell_content_client.cc', |
| 145 'shell/common/shell_content_client.h', | 147 'shell/common/shell_content_client.h', |
| 146 'shell/common/shell_extensions_client.cc', | 148 'shell/common/shell_extensions_client.cc', |
| 147 'shell/common/shell_extensions_client.h', | 149 'shell/common/shell_extensions_client.h', |
| 148 'shell/renderer/shell_content_renderer_client.cc', | 150 'shell/renderer/shell_content_renderer_client.cc', |
| 149 'shell/renderer/shell_content_renderer_client.h', | 151 'shell/renderer/shell_content_renderer_client.h', |
| 150 ], | 152 ], |
| 151 'conditions': [ | 153 'conditions': [ |
| 152 ['OS=="win"', { | 154 ['OS=="win"', { |
| 153 'msvs_settings': { | 155 'msvs_settings': { |
| 154 'VCLinkerTool': { | 156 'VCLinkerTool': { |
| 155 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 157 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 156 }, | 158 }, |
| 157 }, | 159 }, |
| 158 'dependencies': [ | 160 'dependencies': [ |
| 159 '../sandbox/sandbox.gyp:sandbox', | 161 '../sandbox/sandbox.gyp:sandbox', |
| 160 ], | 162 ], |
| 161 }], | 163 }], |
| 162 ], | 164 ], |
| 163 }, | 165 }, |
| 164 ], # targets | 166 ], # targets |
| 165 }], # chromeos==1 | 167 }], # chromeos==1 |
| 166 ], # conditions | 168 ], # conditions |
| 167 } | 169 } |
| OLD | NEW |