Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(49)

Side by Side Diff: apps/apps.gypi

Issue 166833004: Add support for chrome.app.window.create() to app_shell (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase (shell_app_window) Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 ], 154 ],
155 'include_dirs': [ 155 'include_dirs': [
156 '..', 156 '..',
157 ], 157 ],
158 'sources': [ 158 'sources': [
159 'shell/app/shell_main_delegate.cc', 159 'shell/app/shell_main_delegate.cc',
160 'shell/app/shell_main_delegate.h', 160 'shell/app/shell_main_delegate.h',
161 'shell/app/shell_main.cc', 161 'shell/app/shell_main.cc',
162 'shell/browser/shell_app_sorting.cc', 162 'shell/browser/shell_app_sorting.cc',
163 'shell/browser/shell_app_sorting.h', 163 'shell/browser/shell_app_sorting.h',
164 'shell/browser/shell_app_window_delegate.cc',
165 'shell/browser/shell_app_window_delegate.h',
166 'shell/browser/shell_apps_client.cc',
167 'shell/browser/shell_apps_client.h',
164 'shell/browser/shell_browser_context.cc', 168 'shell/browser/shell_browser_context.cc',
165 'shell/browser/shell_browser_context.h', 169 'shell/browser/shell_browser_context.h',
166 'shell/browser/shell_browser_main_parts.cc', 170 'shell/browser/shell_browser_main_parts.cc',
167 'shell/browser/shell_browser_main_parts.h', 171 'shell/browser/shell_browser_main_parts.h',
168 'shell/browser/shell_content_browser_client.cc', 172 'shell/browser/shell_content_browser_client.cc',
169 'shell/browser/shell_content_browser_client.h', 173 'shell/browser/shell_content_browser_client.h',
170 'shell/browser/shell_extension_system.cc', 174 'shell/browser/shell_extension_system.cc',
171 'shell/browser/shell_extension_system.h', 175 'shell/browser/shell_extension_system.h',
172 'shell/browser/shell_extension_system_factory.cc', 176 'shell/browser/shell_extension_system_factory.cc',
173 'shell/browser/shell_extension_system_factory.h', 177 'shell/browser/shell_extension_system_factory.h',
(...skipping 18 matching lines...) Expand all
192 'dependencies': [ 196 'dependencies': [
193 '../sandbox/sandbox.gyp:sandbox', 197 '../sandbox/sandbox.gyp:sandbox',
194 ], 198 ],
195 }], 199 }],
196 ], 200 ],
197 }, 201 },
198 ], # targets 202 ], # targets
199 }], # chromeos==1 203 }], # chromeos==1
200 ], # conditions 204 ], # conditions
201 } 205 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698