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

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: Odd - DEPS files are not shown by git status. Added. 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 'content/public/content_activity_factory_creator.h', 137 'content/public/content_activity_factory_creator.h',
137 'content/public/content_app_model_builder.h', 138 'content/public/content_app_model_builder.h',
138 'content/public/web_contents_view_delegate_creator.h', 139 'content/public/web_contents_view_delegate_creator.h',
139 'content/render_view_context_menu_impl.cc', 140 'content/render_view_context_menu_impl.cc',
140 'content/render_view_context_menu_impl.h', 141 'content/render_view_context_menu_impl.h',
141 'content/web_activity.cc', 142 'content/web_activity.cc',
142 'content/web_activity.h', 143 'content/web_activity.h',
143 'content/web_contents_view_delegate_factory_impl.cc', 144 'content/web_contents_view_delegate_factory_impl.cc',
144 'extensions/public/extensions_delegate.h', 145 'extensions/public/extensions_delegate.h',
145 'extensions/extensions_delegate.cc', 146 'extensions/extensions_delegate.cc',
147 'resource_manager/memory_pressure_notifier.cc',
148 'resource_manager/memory_pressure_notifier.h',
149 'resource_manager/resource_manager_impl.cc',
150 'resource_manager/public/resource_manager.h',
151 'resource_manager/public/resource_manager_delegate.h',
146 'virtual_keyboard/public/virtual_keyboard_manager.h', 152 'virtual_keyboard/public/virtual_keyboard_manager.h',
153 'resource_manager/resource_manager_impl.cc',
147 'virtual_keyboard/virtual_keyboard_manager_impl.cc', 154 'virtual_keyboard/virtual_keyboard_manager_impl.cc',
148 ], 155 ],
149 }, 156 },
150 { 157 {
151 'target_name': 'athena_app_shell_lib', 158 'target_name': 'athena_app_shell_lib',
152 'type': 'static_library', 159 'type': 'static_library',
153 'dependencies': [ 160 'dependencies': [
154 '../extensions/shell/app_shell.gyp:app_shell_lib', 161 '../extensions/shell/app_shell.gyp:app_shell_lib',
155 ], 162 ],
156 'sources': [ 163 'sources': [
157 'content/shell/content_activity_factory.cc', 164 'content/shell/content_activity_factory.cc',
158 'content/shell/shell_app_activity.cc', 165 'content/shell/shell_app_activity.cc',
159 'content/shell/shell_app_activity.h', 166 'content/shell/shell_app_activity.h',
160 'extensions/shell/extensions_delegate_impl.cc', 167 'extensions/shell/extensions_delegate_impl.cc',
168 'resource_manager/delegate/resource_manager_delegate.cc',
161 ], 169 ],
162 }, 170 },
163 { 171 {
164 'target_name': 'athena_test_support', 172 'target_name': 'athena_test_support',
165 'type': 'static_library', 173 'type': 'static_library',
166 'dependencies': [ 174 'dependencies': [
167 '../base/base.gyp:test_support_base', 175 '../base/base.gyp:test_support_base',
168 '../chromeos/chromeos.gyp:chromeos', 176 '../chromeos/chromeos.gyp:chromeos',
169 '../skia/skia.gyp:skia', 177 '../skia/skia.gyp:skia',
170 '../testing/gtest.gyp:gtest', 178 '../testing/gtest.gyp:gtest',
(...skipping 16 matching lines...) Expand all
187 'test/athena_test_base.h', 195 'test/athena_test_base.h',
188 'test/athena_test_helper.cc', 196 'test/athena_test_helper.cc',
189 'test/athena_test_helper.h', 197 'test/athena_test_helper.h',
190 'test/sample_activity.cc', 198 'test/sample_activity.cc',
191 'test/sample_activity.h', 199 'test/sample_activity.h',
192 'test/sample_activity_factory.cc', 200 'test/sample_activity_factory.cc',
193 'test/sample_activity_factory.h', 201 'test/sample_activity_factory.h',
194 'test/test_app_content_control_delegate_impl.cc', 202 'test/test_app_content_control_delegate_impl.cc',
195 'test/test_app_model_builder.cc', 203 'test/test_app_model_builder.cc',
196 'test/test_app_model_builder.h', 204 'test/test_app_model_builder.h',
205 'test/test_resource_manager_delegate.cc',
197 'wm/test/window_manager_impl_test_api.cc', 206 'wm/test/window_manager_impl_test_api.cc',
198 'wm/test/window_manager_impl_test_api.h', 207 'wm/test/window_manager_impl_test_api.h',
199 ], 208 ],
200 }, 209 },
201 { 210 {
202 'target_name': 'athena_unittests', 211 'target_name': 'athena_unittests',
203 'type': 'executable', 212 'type': 'executable',
204 'dependencies': [ 213 'dependencies': [
205 '../skia/skia.gyp:skia', 214 '../skia/skia.gyp:skia',
206 '../testing/gtest.gyp:gtest', 215 '../testing/gtest.gyp:gtest',
207 'athena_app_shell_lib', 216 'athena_app_shell_lib',
208 'athena_lib', 217 'athena_lib',
209 'athena_test_support', 218 'athena_test_support',
210 'main/athena_main.gyp:athena_main_lib', 219 'main/athena_main.gyp:athena_main_lib',
211 'resources/athena_resources.gyp:athena_pak', 220 'resources/athena_resources.gyp:athena_pak',
212 ], 221 ],
213 'sources': [ 222 'sources': [
214 'activity/activity_manager_unittest.cc', 223 'activity/activity_manager_unittest.cc',
215 'common/fill_layout_manager_unittest.cc', 224 'common/fill_layout_manager_unittest.cc',
216 'content/app_activity_unittest.cc', 225 'content/app_activity_unittest.cc',
217 'home/home_card_gesture_manager_unittest.cc', 226 'home/home_card_gesture_manager_unittest.cc',
218 'home/home_card_unittest.cc', 227 'home/home_card_unittest.cc',
219 'input/accelerator_manager_unittest.cc', 228 'input/accelerator_manager_unittest.cc',
229 'resource_manager/memory_pressure_notifier_unittest.cc',
230 'resource_manager/resource_manager_unittest.cc',
220 'screen/screen_manager_unittest.cc', 231 'screen/screen_manager_unittest.cc',
221 'test/athena_unittests.cc', 232 'test/athena_unittests.cc',
222 'wm/split_view_controller_unittest.cc', 233 'wm/split_view_controller_unittest.cc',
223 'wm/window_list_provider_impl_unittest.cc', 234 'wm/window_list_provider_impl_unittest.cc',
224 'wm/window_manager_unittest.cc', 235 'wm/window_manager_unittest.cc',
225 ], 236 ],
226 } 237 }
227 ], 238 ],
228 } 239 }
229 240
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698