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

Side by Side Diff: apps/apps.gypi

Issue 145723011: Add a specialized apps::NativeAppWindow for app_shell (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: similarity 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
« no previous file with comments | « no previous file | apps/apps_client.h » ('j') | apps/apps_client.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 ], 122 ],
123 'include_dirs': [ 123 'include_dirs': [
124 '..', 124 '..',
125 ], 125 ],
126 'sources': [ 126 'sources': [
127 'shell/app/shell_main_delegate.cc', 127 'shell/app/shell_main_delegate.cc',
128 'shell/app/shell_main_delegate.h', 128 'shell/app/shell_main_delegate.h',
129 'shell/app/shell_main.cc', 129 'shell/app/shell_main.cc',
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_apps_client.cc',
133 'shell/browser/shell_apps_client.h',
132 'shell/browser/shell_browser_context.cc', 134 'shell/browser/shell_browser_context.cc',
133 'shell/browser/shell_browser_context.h', 135 'shell/browser/shell_browser_context.h',
134 'shell/browser/shell_browser_main_parts.cc', 136 'shell/browser/shell_browser_main_parts.cc',
135 'shell/browser/shell_browser_main_parts.h', 137 'shell/browser/shell_browser_main_parts.h',
136 'shell/browser/shell_content_browser_client.cc', 138 'shell/browser/shell_content_browser_client.cc',
137 'shell/browser/shell_content_browser_client.h', 139 'shell/browser/shell_content_browser_client.h',
138 'shell/browser/shell_extension_system.cc', 140 'shell/browser/shell_extension_system.cc',
139 'shell/browser/shell_extension_system.h', 141 'shell/browser/shell_extension_system.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',
144 'shell/browser/shell_native_app_window.cc',
145 'shell/browser/shell_native_app_window.h',
146 'shell/browser/shell_shell_window_delegate.cc',
147 'shell/browser/shell_shell_window_delegate.h',
142 'shell/browser/web_view_window.cc', 148 'shell/browser/web_view_window.cc',
143 'shell/browser/web_view_window.cc', 149 'shell/browser/web_view_window.cc',
144 'shell/common/shell_content_client.cc', 150 'shell/common/shell_content_client.cc',
145 'shell/common/shell_content_client.h', 151 'shell/common/shell_content_client.h',
146 'shell/common/shell_extensions_client.cc', 152 'shell/common/shell_extensions_client.cc',
147 'shell/common/shell_extensions_client.h', 153 'shell/common/shell_extensions_client.h',
148 'shell/renderer/shell_content_renderer_client.cc', 154 'shell/renderer/shell_content_renderer_client.cc',
149 'shell/renderer/shell_content_renderer_client.h', 155 'shell/renderer/shell_content_renderer_client.h',
150 ], 156 ],
151 'conditions': [ 157 'conditions': [
152 ['OS=="win"', { 158 ['OS=="win"', {
153 'msvs_settings': { 159 'msvs_settings': {
154 'VCLinkerTool': { 160 'VCLinkerTool': {
155 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 161 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
156 }, 162 },
157 }, 163 },
158 'dependencies': [ 164 'dependencies': [
159 '../sandbox/sandbox.gyp:sandbox', 165 '../sandbox/sandbox.gyp:sandbox',
160 ], 166 ],
161 }], 167 }],
162 ], 168 ],
163 }, 169 },
164 ], # targets 170 ], # targets
165 }], # chromeos==1 171 }], # chromeos==1
166 ], # conditions 172 ], # conditions
167 } 173 }
OLDNEW
« no previous file with comments | « no previous file | apps/apps_client.h » ('j') | apps/apps_client.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698