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

Side by Side Diff: athena/athena.gyp

Issue 513523002: Adding Baseframework of the ResourceManager (all hooks and observers) are being put in place with a… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Aaaand another rebase 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 | Annotate | Revision Log
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 23 matching lines...) Expand all
34 'activity/activity_manager_impl.cc', 34 'activity/activity_manager_impl.cc',
35 'activity/activity_manager_impl.h', 35 'activity/activity_manager_impl.h',
36 'activity/activity_view_manager_impl.cc', 36 'activity/activity_view_manager_impl.cc',
37 'activity/activity_frame_view.cc', 37 'activity/activity_frame_view.cc',
38 'activity/activity_frame_view.h', 38 'activity/activity_frame_view.h',
39 'activity/activity_widget_delegate.cc', 39 'activity/activity_widget_delegate.cc',
40 'activity/activity_widget_delegate.h', 40 'activity/activity_widget_delegate.h',
41 'activity/public/activity.h', 41 'activity/public/activity.h',
42 'activity/public/activity_factory.h', 42 'activity/public/activity_factory.h',
43 'activity/public/activity_manager.h', 43 'activity/public/activity_manager.h',
44 'activity/public/activity_manager_observer.h',
44 'activity/public/activity_view_manager.h', 45 'activity/public/activity_view_manager.h',
45 'activity/public/activity_view_model.h', 46 'activity/public/activity_view_model.h',
46 'athena_export.h', 47 'athena_export.h',
47 'common/container_priorities.h', 48 'common/container_priorities.h',
48 'common/fill_layout_manager.cc', 49 'common/fill_layout_manager.cc',
49 'common/fill_layout_manager.h', 50 'common/fill_layout_manager.h',
50 'common/switches.cc', 51 'common/switches.cc',
51 'common/switches.h', 52 'common/switches.h',
52 'env/athena_env_impl.cc', 53 'env/athena_env_impl.cc',
53 'env/public/athena_env.h', 54 'env/public/athena_env.h',
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 'content/public/content_activity_factory_creator.h', 135 'content/public/content_activity_factory_creator.h',
135 'content/public/content_app_model_builder.h', 136 'content/public/content_app_model_builder.h',
136 'content/public/web_contents_view_delegate_creator.h', 137 'content/public/web_contents_view_delegate_creator.h',
137 'content/render_view_context_menu_impl.cc', 138 'content/render_view_context_menu_impl.cc',
138 'content/render_view_context_menu_impl.h', 139 'content/render_view_context_menu_impl.h',
139 'content/web_activity.cc', 140 'content/web_activity.cc',
140 'content/web_activity.h', 141 'content/web_activity.h',
141 'content/web_contents_view_delegate_factory_impl.cc', 142 'content/web_contents_view_delegate_factory_impl.cc',
142 'extensions/public/extensions_delegate.h', 143 'extensions/public/extensions_delegate.h',
143 'extensions/extensions_delegate.cc', 144 'extensions/extensions_delegate.cc',
145 'resource_manager/memory_pressure_notifier.cc',
146 'resource_manager/memory_pressure_notifier.h',
147 'resource_manager/resource_manager_impl.cc',
148 'resource_manager/public/resource_manager.h',
149 'resource_manager/public/resource_manager_delegate.h',
144 'virtual_keyboard/public/virtual_keyboard_manager.h', 150 'virtual_keyboard/public/virtual_keyboard_manager.h',
151 'resource_manager/resource_manager_impl.cc',
145 'virtual_keyboard/virtual_keyboard_manager_impl.cc', 152 'virtual_keyboard/virtual_keyboard_manager_impl.cc',
146 ], 153 ],
147 }, 154 },
148 { 155 {
149 'target_name': 'athena_app_shell_lib', 156 'target_name': 'athena_app_shell_lib',
150 'type': 'static_library', 157 'type': 'static_library',
151 'dependencies': [ 158 'dependencies': [
152 '../extensions/shell/app_shell.gyp:app_shell_lib', 159 '../extensions/shell/app_shell.gyp:app_shell_lib',
153 ], 160 ],
154 'sources': [ 161 'sources': [
155 'content/shell/content_activity_factory.cc', 162 'content/shell/content_activity_factory.cc',
156 'content/shell/shell_app_activity.cc', 163 'content/shell/shell_app_activity.cc',
157 'content/shell/shell_app_activity.h', 164 'content/shell/shell_app_activity.h',
158 'extensions/shell/extensions_delegate_impl.cc', 165 'extensions/shell/extensions_delegate_impl.cc',
166 'resource_manager/delegate/resource_manager_delegate.cc',
159 ], 167 ],
160 }, 168 },
161 { 169 {
162 'target_name': 'athena_test_support', 170 'target_name': 'athena_test_support',
163 'type': 'static_library', 171 'type': 'static_library',
164 'dependencies': [ 172 'dependencies': [
165 '../base/base.gyp:test_support_base', 173 '../base/base.gyp:test_support_base',
166 '../chromeos/chromeos.gyp:chromeos', 174 '../chromeos/chromeos.gyp:chromeos',
167 '../skia/skia.gyp:skia', 175 '../skia/skia.gyp:skia',
168 '../testing/gtest.gyp:gtest', 176 '../testing/gtest.gyp:gtest',
(...skipping 14 matching lines...) Expand all
183 'test/athena_test_base.cc', 191 'test/athena_test_base.cc',
184 'test/athena_test_base.h', 192 'test/athena_test_base.h',
185 'test/athena_test_helper.cc', 193 'test/athena_test_helper.cc',
186 'test/athena_test_helper.h', 194 'test/athena_test_helper.h',
187 'test/sample_activity.cc', 195 'test/sample_activity.cc',
188 'test/sample_activity.h', 196 'test/sample_activity.h',
189 'test/sample_activity_factory.cc', 197 'test/sample_activity_factory.cc',
190 'test/sample_activity_factory.h', 198 'test/sample_activity_factory.h',
191 'test/test_app_model_builder.cc', 199 'test/test_app_model_builder.cc',
192 'test/test_app_model_builder.h', 200 'test/test_app_model_builder.h',
201 'test/test_resource_manager_delegate.cc',
193 'wm/test/window_manager_impl_test_api.cc', 202 'wm/test/window_manager_impl_test_api.cc',
194 'wm/test/window_manager_impl_test_api.h', 203 'wm/test/window_manager_impl_test_api.h',
195 ], 204 ],
196 }, 205 },
197 { 206 {
198 'target_name': 'athena_unittests', 207 'target_name': 'athena_unittests',
199 'type': 'executable', 208 'type': 'executable',
200 'dependencies': [ 209 'dependencies': [
201 '../skia/skia.gyp:skia', 210 '../skia/skia.gyp:skia',
202 '../testing/gtest.gyp:gtest', 211 '../testing/gtest.gyp:gtest',
203 'athena_app_shell_lib', 212 'athena_app_shell_lib',
204 'athena_lib', 213 'athena_lib',
205 'athena_test_support', 214 'athena_test_support',
206 'main/athena_main.gyp:athena_main_lib', 215 'main/athena_main.gyp:athena_main_lib',
207 'resources/athena_resources.gyp:athena_pak', 216 'resources/athena_resources.gyp:athena_pak',
208 ], 217 ],
209 'sources': [ 218 'sources': [
210 'activity/activity_manager_unittest.cc', 219 'activity/activity_manager_unittest.cc',
211 'common/fill_layout_manager_unittest.cc', 220 'common/fill_layout_manager_unittest.cc',
212 'content/app_activity_unittest.cc', 221 'content/app_activity_unittest.cc',
213 'home/home_card_gesture_manager_unittest.cc', 222 'home/home_card_gesture_manager_unittest.cc',
214 'home/home_card_unittest.cc', 223 'home/home_card_unittest.cc',
215 'input/accelerator_manager_unittest.cc', 224 'input/accelerator_manager_unittest.cc',
225 'resource_manager/memory_pressure_notifier_unittest.cc',
226 'resource_manager/resource_manager_unittest.cc',
216 'screen/screen_manager_unittest.cc', 227 'screen/screen_manager_unittest.cc',
217 'test/athena_unittests.cc', 228 'test/athena_unittests.cc',
218 'wm/split_view_controller_unittest.cc', 229 'wm/split_view_controller_unittest.cc',
219 'wm/window_list_provider_impl_unittest.cc', 230 'wm/window_list_provider_impl_unittest.cc',
220 'wm/window_manager_unittest.cc', 231 'wm/window_manager_unittest.cc',
221 ], 232 ],
222 } 233 }
223 ], 234 ],
224 } 235 }
225 236
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698