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

Side by Side Diff: athena/athena.gyp

Issue 563083003: V2 app support step3: Athena's NativeAppWindow (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « no previous file | athena/extensions/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 'wm/window_overview_mode.cc', 119 'wm/window_overview_mode.cc',
120 'wm/window_overview_mode.h', 120 'wm/window_overview_mode.h',
121 ], 121 ],
122 }, 122 },
123 { 123 {
124 'target_name': 'athena_content_lib', 124 'target_name': 'athena_content_lib',
125 'type': 'static_library', 125 'type': 'static_library',
126 'dependencies': [ 126 'dependencies': [
127 'athena_lib', 127 'athena_lib',
128 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 128 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
129 '../components/components.gyp:native_app_window',
129 '../components/components.gyp:renderer_context_menu', 130 '../components/components.gyp:renderer_context_menu',
130 '../components/components.gyp:web_modal', 131 '../components/components.gyp:web_modal',
131 '../extensions/extensions.gyp:extensions_browser', 132 '../extensions/extensions.gyp:extensions_browser',
132 '../extensions/extensions.gyp:extensions_common', 133 '../extensions/extensions.gyp:extensions_common',
133 '../content/content.gyp:content_browser', 134 '../content/content.gyp:content_browser',
134 '../ui/app_list/app_list.gyp:app_list', 135 '../ui/app_list/app_list.gyp:app_list',
135 '../ui/keyboard/keyboard.gyp:keyboard', 136 '../ui/keyboard/keyboard.gyp:keyboard',
136 '../ui/keyboard/keyboard.gyp:keyboard_resources', 137 '../ui/keyboard/keyboard.gyp:keyboard_resources',
137 '../third_party/WebKit/public/blink.gyp:blink', 138 '../third_party/WebKit/public/blink.gyp:blink',
138 '../ui/views/controls/webview/webview.gyp:webview', 139 '../ui/views/controls/webview/webview.gyp:webview',
(...skipping 13 matching lines...) Expand all
152 'content/content_proxy.h', 153 'content/content_proxy.h',
153 'content/public/app_registry.h', 154 'content/public/app_registry.h',
154 'content/public/content_activity_factory_creator.h', 155 'content/public/content_activity_factory_creator.h',
155 'content/public/dialogs.h', 156 'content/public/dialogs.h',
156 'content/public/web_contents_view_delegate_creator.h', 157 'content/public/web_contents_view_delegate_creator.h',
157 'content/render_view_context_menu_impl.cc', 158 'content/render_view_context_menu_impl.cc',
158 'content/render_view_context_menu_impl.h', 159 'content/render_view_context_menu_impl.h',
159 'content/web_activity.cc', 160 'content/web_activity.cc',
160 'content/web_activity.h', 161 'content/web_activity.h',
161 'content/web_contents_view_delegate_factory_impl.cc', 162 'content/web_contents_view_delegate_factory_impl.cc',
163 'extensions/athena_app_delegate_base.cc',
164 'extensions/athena_app_delegate_base.h',
165 'extensions/athena_apps_client_base.cc',
166 'extensions/athena_apps_client_base.h',
167 'extensions/athena_native_app_window_views.cc',
168 'extensions/athena_native_app_window_views.h',
162 'extensions/extension_app_model_builder.cc', 169 'extensions/extension_app_model_builder.cc',
163 'extensions/extensions_delegate.cc', 170 'extensions/extensions_delegate.cc',
164 'extensions/public/extension_app_model_builder.h', 171 'extensions/public/extension_app_model_builder.h',
165 'extensions/public/extensions_delegate.h', 172 'extensions/public/extensions_delegate.h',
166 'virtual_keyboard/public/virtual_keyboard_manager.h', 173 'virtual_keyboard/public/virtual_keyboard_manager.h',
167 'virtual_keyboard/virtual_keyboard_manager_impl.cc', 174 'virtual_keyboard/virtual_keyboard_manager_impl.cc',
168 ], 175 ],
169 }, 176 },
170 { 177 {
171 'target_name': 'athena_chrome_lib', 178 'target_name': 'athena_chrome_lib',
172 'type': 'static_library', 179 'type': 'static_library',
173 'dependencies': [ 180 'dependencies': [
174 '../chrome/chrome.gyp:browser_extensions', 181 '../chrome/chrome.gyp:browser_extensions',
175 ], 182 ],
176 'sources': [ 183 'sources': [
177 'content/chrome/content_activity_factory.cc', 184 'content/chrome/content_activity_factory.cc',
178 'content/chrome/dialogs.cc', 185 'content/chrome/dialogs.cc',
179 'extensions/chrome/athena_app_delegate.cc', 186 'extensions/chrome/athena_chrome_app_delegate.cc',
180 'extensions/chrome/athena_app_delegate.h', 187 'extensions/chrome/athena_chrome_app_delegate.h',
181 'extensions/chrome/athena_apps_client.cc', 188 'extensions/chrome/athena_chrome_apps_client.cc',
182 'extensions/chrome/athena_apps_client.h', 189 'extensions/chrome/athena_chrome_apps_client.h',
183 'extensions/chrome/extensions_delegate_impl.cc', 190 'extensions/chrome/extensions_delegate_impl.cc',
184 ], 191 ],
185 }, 192 },
186 { 193 {
187 'target_name': 'athena_app_shell_lib', 194 'target_name': 'athena_app_shell_lib',
188 'type': 'static_library', 195 'type': 'static_library',
189 'dependencies': [ 196 'dependencies': [
190 '../extensions/shell/app_shell.gyp:app_shell_lib', 197 '../extensions/shell/app_shell.gyp:app_shell_lib',
191 '../skia/skia.gyp:skia', 198 '../skia/skia.gyp:skia',
192 ], 199 ],
193 'sources': [ 200 'sources': [
194 'content/shell/content_activity_factory.cc', 201 'content/shell/content_activity_factory.cc',
195 'content/shell/dialogs.cc', 202 'content/shell/dialogs.cc',
196 'content/shell/shell_app_activity.cc', 203 'content/shell/shell_app_activity.cc',
197 'content/shell/shell_app_activity.h', 204 'content/shell/shell_app_activity.h',
198 'extensions/shell/extensions_delegate_impl.cc', 205 'extensions/shell/extensions_delegate_impl.cc',
206 'extensions/shell/athena_shell_app_delegate.cc',
207 'extensions/shell/athena_shell_app_delegate.h',
208 'extensions/shell/athena_shell_apps_client.cc',
209 'extensions/shell/athena_shell_apps_client.h',
210 'extensions/shell/athena_apps_client_delegate.h',
199 ], 211 ],
200 }, 212 },
201 { 213 {
202 'target_name': 'athena_test_support', 214 'target_name': 'athena_test_support',
203 'type': 'static_library', 215 'type': 'static_library',
204 'dependencies': [ 216 'dependencies': [
205 '../base/base.gyp:test_support_base', 217 '../base/base.gyp:test_support_base',
206 '../chromeos/chromeos.gyp:chromeos', 218 '../chromeos/chromeos.gyp:chromeos',
207 '../skia/skia.gyp:skia', 219 '../skia/skia.gyp:skia',
208 '../testing/gtest.gyp:gtest', 220 '../testing/gtest.gyp:gtest',
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 'screen/screen_manager_unittest.cc', 274 'screen/screen_manager_unittest.cc',
263 'test/athena_unittests.cc', 275 'test/athena_unittests.cc',
264 'wm/split_view_controller_unittest.cc', 276 'wm/split_view_controller_unittest.cc',
265 'wm/window_list_provider_impl_unittest.cc', 277 'wm/window_list_provider_impl_unittest.cc',
266 'wm/window_manager_unittest.cc', 278 'wm/window_manager_unittest.cc',
267 ], 279 ],
268 } 280 }
269 ], 281 ],
270 } 282 }
271 283
OLDNEW
« no previous file with comments | « no previous file | athena/extensions/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698