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

Side by Side Diff: athena/athena.gyp

Issue 498023003: Delete activity upon window deletion (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cleanup 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 | « athena/activity/activity_view_manager_impl.cc ('k') | athena/content/web_activity.cc » ('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 14 matching lines...) Expand all
25 'resources/athena_resources.gyp:athena_resources', 25 'resources/athena_resources.gyp:athena_resources',
26 ], 26 ],
27 'defines': [ 27 'defines': [
28 'ATHENA_IMPLEMENTATION', 28 'ATHENA_IMPLEMENTATION',
29 ], 29 ],
30 'sources': [ 30 'sources': [
31 # All .cc, .h under athena, except unittests 31 # All .cc, .h under athena, except unittests
32 'activity/activity.cc', 32 'activity/activity.cc',
33 'activity/activity_factory.cc', 33 'activity/activity_factory.cc',
34 'activity/activity_manager_impl.cc', 34 'activity/activity_manager_impl.cc',
35 'activity/activity_manager_impl.h',
35 'activity/activity_view_manager_impl.cc', 36 'activity/activity_view_manager_impl.cc',
36 'activity/activity_frame_view.cc', 37 'activity/activity_frame_view.cc',
37 'activity/activity_frame_view.h', 38 'activity/activity_frame_view.h',
38 'activity/activity_widget_delegate.cc', 39 'activity/activity_widget_delegate.cc',
39 'activity/activity_widget_delegate.h', 40 'activity/activity_widget_delegate.h',
40 'activity/public/activity.h', 41 'activity/public/activity.h',
41 'activity/public/activity_factory.h', 42 'activity/public/activity_factory.h',
42 'activity/public/activity_manager.h', 43 'activity/public/activity_manager.h',
43 'activity/public/activity_view_manager.h', 44 'activity/public/activity_view_manager.h',
44 'activity/public/activity_view_model.h', 45 'activity/public/activity_view_model.h',
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 '../extensions/extensions.gyp:extensions_common', 109 '../extensions/extensions.gyp:extensions_common',
109 '../extensions/shell/app_shell.gyp:app_shell_lib', 110 '../extensions/shell/app_shell.gyp:app_shell_lib',
110 '../content/content.gyp:content_browser', 111 '../content/content.gyp:content_browser',
111 '../ui/app_list/app_list.gyp:app_list', 112 '../ui/app_list/app_list.gyp:app_list',
112 '../ui/keyboard/keyboard.gyp:keyboard', 113 '../ui/keyboard/keyboard.gyp:keyboard',
113 '../ui/keyboard/keyboard.gyp:keyboard_resources', 114 '../ui/keyboard/keyboard.gyp:keyboard_resources',
114 '../third_party/WebKit/public/blink.gyp:blink', 115 '../third_party/WebKit/public/blink.gyp:blink',
115 '../ui/views/controls/webview/webview.gyp:webview', 116 '../ui/views/controls/webview/webview.gyp:webview',
116 '../skia/skia.gyp:skia', 117 '../skia/skia.gyp:skia',
117 ], 118 ],
118 'defines': [
119 'ATHENA_IMPLEMENTATION',
120 ],
121 'sources': [ 119 'sources': [
122 'content/app_activity.cc', 120 'content/app_activity.cc',
123 'content/app_activity.h', 121 'content/app_activity.h',
124 'content/app_activity_proxy.cc', 122 'content/app_activity_proxy.cc',
125 'content/app_activity_proxy.h', 123 'content/app_activity_proxy.h',
126 'content/app_activity_registry.cc', 124 'content/app_activity_registry.cc',
127 'content/app_activity_registry.h', 125 'content/app_activity_registry.h',
128 'content/app_registry_impl.cc', 126 'content/app_registry_impl.cc',
129 'content/content_activity_factory.cc', 127 'content/content_activity_factory.cc',
130 'content/content_app_model_builder.cc', 128 'content/content_app_model_builder.cc',
129 'content/delegate/app_content_control_delegate_impl.cc',
130 'content/public/app_content_control_delegate.h',
131 'content/public/app_registry.h', 131 'content/public/app_registry.h',
132 'content/public/content_activity_factory.h', 132 'content/public/content_activity_factory.h',
133 'content/public/content_app_model_builder.h', 133 'content/public/content_app_model_builder.h',
134 'content/public/web_contents_view_delegate_creator.h', 134 'content/public/web_contents_view_delegate_creator.h',
135 'content/render_view_context_menu_impl.cc', 135 'content/render_view_context_menu_impl.cc',
136 'content/render_view_context_menu_impl.h', 136 'content/render_view_context_menu_impl.h',
137 'content/web_activity.cc', 137 'content/web_activity.cc',
138 'content/web_activity.h', 138 'content/web_activity.h',
139 'content/web_contents_view_delegate_factory_impl.cc', 139 'content/web_contents_view_delegate_factory_impl.cc',
140 'extensions/public/extensions_delegate.h', 140 'extensions/public/extensions_delegate.h',
141 'extensions/extensions_delegate_impl.cc', 141 'extensions/extensions_delegate.cc',
142 'virtual_keyboard/public/virtual_keyboard_manager.h', 142 'virtual_keyboard/public/virtual_keyboard_manager.h',
143 'virtual_keyboard/virtual_keyboard_manager_impl.cc', 143 'virtual_keyboard/virtual_keyboard_manager_impl.cc',
144 ], 144 ],
145 }, 145 },
146 { 146 {
147 'target_name': 'athena_content_support_lib', 147 'target_name': 'athena_app_shell_lib',
148 'type': 'static_library', 148 'type': 'static_library',
149 'dependencies': [ 149 'dependencies': [
150 '../content/content.gyp:content_browser', 150 '../extensions/shell/app_shell.gyp:app_shell_lib',
151 ], 151 ],
152 'sources': [ 152 'sources': [
153 'content/delegate/app_content_control_delegate_impl.cc', 153 'extensions/shell/extensions_delegate_impl.cc',
154 'content/public/app_content_control_delegate.h',
155 ], 154 ],
156 }, 155 },
157 { 156 {
158 'target_name': 'athena_test_support', 157 'target_name': 'athena_test_support',
159 'type': 'static_library', 158 'type': 'static_library',
160 'dependencies': [ 159 'dependencies': [
161 '../base/base.gyp:test_support_base', 160 '../base/base.gyp:test_support_base',
162 '../chromeos/chromeos.gyp:chromeos', 161 '../chromeos/chromeos.gyp:chromeos',
163 '../skia/skia.gyp:skia', 162 '../skia/skia.gyp:skia',
164 '../testing/gtest.gyp:gtest', 163 '../testing/gtest.gyp:gtest',
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 'screen/screen_manager_unittest.cc', 211 'screen/screen_manager_unittest.cc',
213 'test/athena_unittests.cc', 212 'test/athena_unittests.cc',
214 'wm/split_view_controller_unittest.cc', 213 'wm/split_view_controller_unittest.cc',
215 'wm/window_list_provider_impl_unittest.cc', 214 'wm/window_list_provider_impl_unittest.cc',
216 'wm/window_manager_unittest.cc', 215 'wm/window_manager_unittest.cc',
217 ], 216 ],
218 } 217 }
219 ], 218 ],
220 } 219 }
221 220
OLDNEW
« no previous file with comments | « athena/activity/activity_view_manager_impl.cc ('k') | athena/content/web_activity.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698