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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 'prefs.h', | 58 'prefs.h', |
59 'saved_files_service.cc', | 59 'saved_files_service.cc', |
60 'saved_files_service.h', | 60 'saved_files_service.h', |
61 'saved_files_service_factory.cc', | 61 'saved_files_service_factory.cc', |
62 'saved_files_service_factory.h', | 62 'saved_files_service_factory.h', |
63 'switches.cc', | 63 'switches.cc', |
64 'switches.h', | 64 'switches.h', |
65 'ui/native_app_window.h', | 65 'ui/native_app_window.h', |
66 'ui/views/app_window_frame_view.cc', | 66 'ui/views/app_window_frame_view.cc', |
67 'ui/views/app_window_frame_view.h', | 67 'ui/views/app_window_frame_view.h', |
| 68 'ui/views/native_app_window_views.cc', |
| 69 'ui/views/native_app_window_views.h', |
68 ], | 70 ], |
69 'conditions': [ | 71 'conditions': [ |
70 ['chromeos==1', | 72 ['chromeos==1', |
71 { | 73 { |
72 'dependencies': [ | 74 'dependencies': [ |
73 'browser_chromeos', | 75 'browser_chromeos', |
74 ] | 76 ] |
75 } | 77 } |
76 ], | 78 ], |
77 ['enable_extensions==0', | 79 ['enable_extensions==0', |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 ], | 124 ], |
123 'include_dirs': [ | 125 'include_dirs': [ |
124 '..', | 126 '..', |
125 ], | 127 ], |
126 'sources': [ | 128 'sources': [ |
127 'shell/app/shell_main_delegate.cc', | 129 'shell/app/shell_main_delegate.cc', |
128 'shell/app/shell_main_delegate.h', | 130 'shell/app/shell_main_delegate.h', |
129 'shell/app/shell_main.cc', | 131 'shell/app/shell_main.cc', |
130 'shell/browser/shell_app_sorting.cc', | 132 'shell/browser/shell_app_sorting.cc', |
131 'shell/browser/shell_app_sorting.h', | 133 'shell/browser/shell_app_sorting.h', |
| 134 'shell/browser/shell_apps_client.cc', |
| 135 'shell/browser/shell_apps_client.h', |
132 'shell/browser/shell_browser_context.cc', | 136 'shell/browser/shell_browser_context.cc', |
133 'shell/browser/shell_browser_context.h', | 137 'shell/browser/shell_browser_context.h', |
134 'shell/browser/shell_browser_main_parts.cc', | 138 'shell/browser/shell_browser_main_parts.cc', |
135 'shell/browser/shell_browser_main_parts.h', | 139 'shell/browser/shell_browser_main_parts.h', |
136 'shell/browser/shell_content_browser_client.cc', | 140 'shell/browser/shell_content_browser_client.cc', |
137 'shell/browser/shell_content_browser_client.h', | 141 'shell/browser/shell_content_browser_client.h', |
138 'shell/browser/shell_extension_system.cc', | 142 'shell/browser/shell_extension_system.cc', |
139 'shell/browser/shell_extension_system.h', | 143 'shell/browser/shell_extension_system.h', |
140 'shell/browser/shell_extension_system_factory.cc', | 144 'shell/browser/shell_extension_system_factory.cc', |
141 'shell/browser/shell_extension_system_factory.h', | 145 'shell/browser/shell_extension_system_factory.h', |
142 'shell/browser/shell_extensions_browser_client.cc', | 146 'shell/browser/shell_extensions_browser_client.cc', |
143 'shell/browser/shell_extensions_browser_client.h', | 147 'shell/browser/shell_extensions_browser_client.h', |
| 148 'shell/browser/shell_native_app_window.cc', |
| 149 'shell/browser/shell_native_app_window.h', |
| 150 'shell/browser/shell_shell_window_delegate.cc', |
| 151 'shell/browser/shell_shell_window_delegate.h', |
144 'shell/browser/web_view_window.cc', | 152 'shell/browser/web_view_window.cc', |
145 'shell/browser/web_view_window.cc', | 153 'shell/browser/web_view_window.cc', |
146 'shell/common/shell_content_client.cc', | 154 'shell/common/shell_content_client.cc', |
147 'shell/common/shell_content_client.h', | 155 'shell/common/shell_content_client.h', |
148 'shell/common/shell_extensions_client.cc', | 156 'shell/common/shell_extensions_client.cc', |
149 'shell/common/shell_extensions_client.h', | 157 'shell/common/shell_extensions_client.h', |
150 'shell/renderer/shell_content_renderer_client.cc', | 158 'shell/renderer/shell_content_renderer_client.cc', |
151 'shell/renderer/shell_content_renderer_client.h', | 159 'shell/renderer/shell_content_renderer_client.h', |
152 ], | 160 ], |
153 'conditions': [ | 161 'conditions': [ |
154 ['OS=="win"', { | 162 ['OS=="win"', { |
155 'msvs_settings': { | 163 'msvs_settings': { |
156 'VCLinkerTool': { | 164 'VCLinkerTool': { |
157 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 165 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
158 }, | 166 }, |
159 }, | 167 }, |
160 'dependencies': [ | 168 'dependencies': [ |
161 '../sandbox/sandbox.gyp:sandbox', | 169 '../sandbox/sandbox.gyp:sandbox', |
162 ], | 170 ], |
163 }], | 171 }], |
164 ], | 172 ], |
165 }, | 173 }, |
166 ], # targets | 174 ], # targets |
167 }], # chromeos==1 | 175 }], # chromeos==1 |
168 ], # conditions | 176 ], # conditions |
169 } | 177 } |
OLD | NEW |