| 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 ], | 126 ], |
| 127 'include_dirs': [ | 127 'include_dirs': [ |
| 128 '..', | 128 '..', |
| 129 ], | 129 ], |
| 130 'sources': [ | 130 'sources': [ |
| 131 'shell/app/shell_main_delegate.cc', | 131 'shell/app/shell_main_delegate.cc', |
| 132 'shell/app/shell_main_delegate.h', | 132 'shell/app/shell_main_delegate.h', |
| 133 'shell/app/shell_main.cc', | 133 'shell/app/shell_main.cc', |
| 134 'shell/browser/shell_app_sorting.cc', | 134 'shell/browser/shell_app_sorting.cc', |
| 135 'shell/browser/shell_app_sorting.h', | 135 'shell/browser/shell_app_sorting.h', |
| 136 'shell/browser/shell_app_window_delegate.cc', |
| 137 'shell/browser/shell_app_window_delegate.h', |
| 138 'shell/browser/shell_apps_client.cc', |
| 139 'shell/browser/shell_apps_client.h', |
| 136 'shell/browser/shell_browser_context.cc', | 140 'shell/browser/shell_browser_context.cc', |
| 137 'shell/browser/shell_browser_context.h', | 141 'shell/browser/shell_browser_context.h', |
| 138 'shell/browser/shell_browser_main_parts.cc', | 142 'shell/browser/shell_browser_main_parts.cc', |
| 139 'shell/browser/shell_browser_main_parts.h', | 143 'shell/browser/shell_browser_main_parts.h', |
| 140 'shell/browser/shell_content_browser_client.cc', | 144 'shell/browser/shell_content_browser_client.cc', |
| 141 'shell/browser/shell_content_browser_client.h', | 145 'shell/browser/shell_content_browser_client.h', |
| 142 'shell/browser/shell_extension_system.cc', | 146 'shell/browser/shell_extension_system.cc', |
| 143 'shell/browser/shell_extension_system.h', | 147 'shell/browser/shell_extension_system.h', |
| 144 'shell/browser/shell_extension_system_factory.cc', | 148 'shell/browser/shell_extension_system_factory.cc', |
| 145 'shell/browser/shell_extension_system_factory.h', | 149 'shell/browser/shell_extension_system_factory.h', |
| (...skipping 18 matching lines...) Expand all Loading... |
| 164 'dependencies': [ | 168 'dependencies': [ |
| 165 '../sandbox/sandbox.gyp:sandbox', | 169 '../sandbox/sandbox.gyp:sandbox', |
| 166 ], | 170 ], |
| 167 }], | 171 }], |
| 168 ], | 172 ], |
| 169 }, | 173 }, |
| 170 ], # targets | 174 ], # targets |
| 171 }], # chromeos==1 | 175 }], # chromeos==1 |
| 172 ], # conditions | 176 ], # conditions |
| 173 } | 177 } |
| OLD | NEW |