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

Side by Side Diff: athena/athena.gyp

Issue 501093003: Consolidate AppControllDelegate to ExtensionsDelegate (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 | « athena/activity/public/activity_factory.h ('k') | athena/content/app_activity.h » ('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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 'sources': [ 122 'sources': [
123 'content/app_activity.cc', 123 'content/app_activity.cc',
124 'content/app_activity.h', 124 'content/app_activity.h',
125 'content/app_activity_proxy.cc', 125 'content/app_activity_proxy.cc',
126 'content/app_activity_proxy.h', 126 'content/app_activity_proxy.h',
127 'content/app_activity_registry.cc', 127 'content/app_activity_registry.cc',
128 'content/app_activity_registry.h', 128 'content/app_activity_registry.h',
129 'content/app_registry_impl.cc', 129 'content/app_registry_impl.cc',
130 'content/content_activity_factory.cc', 130 'content/content_activity_factory.cc',
131 'content/content_app_model_builder.cc', 131 'content/content_app_model_builder.cc',
132 'content/delegate/app_content_control_delegate_impl.cc',
133 'content/public/app_content_control_delegate.h',
134 'content/public/app_registry.h', 132 'content/public/app_registry.h',
135 'content/content_activity_factory.h', 133 'content/content_activity_factory.h',
136 'content/public/content_activity_factory_creator.h', 134 'content/public/content_activity_factory_creator.h',
137 'content/public/content_app_model_builder.h', 135 'content/public/content_app_model_builder.h',
138 'content/public/web_contents_view_delegate_creator.h', 136 'content/public/web_contents_view_delegate_creator.h',
139 'content/render_view_context_menu_impl.cc', 137 'content/render_view_context_menu_impl.cc',
140 'content/render_view_context_menu_impl.h', 138 'content/render_view_context_menu_impl.h',
141 'content/web_activity.cc', 139 'content/web_activity.cc',
142 'content/web_activity.h', 140 'content/web_activity.h',
143 'content/web_contents_view_delegate_factory_impl.cc', 141 'content/web_contents_view_delegate_factory_impl.cc',
(...skipping 30 matching lines...) Expand all
174 '../ui/base/ui_base.gyp:ui_base_test_support', 172 '../ui/base/ui_base.gyp:ui_base_test_support',
175 '../ui/compositor/compositor.gyp:compositor_test_support', 173 '../ui/compositor/compositor.gyp:compositor_test_support',
176 '../ui/views/views.gyp:views', 174 '../ui/views/views.gyp:views',
177 '../ui/wm/wm.gyp:wm', 175 '../ui/wm/wm.gyp:wm',
178 '../url/url.gyp:url_lib', 176 '../url/url.gyp:url_lib',
179 'athena_content_lib', 177 'athena_content_lib',
180 'athena_lib', 178 'athena_lib',
181 'resources/athena_resources.gyp:athena_resources', 179 'resources/athena_resources.gyp:athena_resources',
182 ], 180 ],
183 'sources': [ 181 'sources': [
184 'content/public/app_content_control_delegate.h',
185 'extensions/test/test_extensions_delegate.cc', 182 'extensions/test/test_extensions_delegate.cc',
186 'test/athena_test_base.cc', 183 'test/athena_test_base.cc',
187 'test/athena_test_base.h', 184 'test/athena_test_base.h',
188 'test/athena_test_helper.cc', 185 'test/athena_test_helper.cc',
189 'test/athena_test_helper.h', 186 'test/athena_test_helper.h',
190 'test/sample_activity.cc', 187 'test/sample_activity.cc',
191 'test/sample_activity.h', 188 'test/sample_activity.h',
192 'test/sample_activity_factory.cc', 189 'test/sample_activity_factory.cc',
193 'test/sample_activity_factory.h', 190 'test/sample_activity_factory.h',
194 'test/test_app_content_control_delegate_impl.cc',
195 'test/test_app_model_builder.cc', 191 'test/test_app_model_builder.cc',
196 'test/test_app_model_builder.h', 192 'test/test_app_model_builder.h',
197 'wm/test/window_manager_impl_test_api.cc', 193 'wm/test/window_manager_impl_test_api.cc',
198 'wm/test/window_manager_impl_test_api.h', 194 'wm/test/window_manager_impl_test_api.h',
199 ], 195 ],
200 }, 196 },
201 { 197 {
202 'target_name': 'athena_unittests', 198 'target_name': 'athena_unittests',
203 'type': 'executable', 199 'type': 'executable',
204 'dependencies': [ 200 'dependencies': [
(...skipping 15 matching lines...) Expand all
220 'screen/screen_manager_unittest.cc', 216 'screen/screen_manager_unittest.cc',
221 'test/athena_unittests.cc', 217 'test/athena_unittests.cc',
222 'wm/split_view_controller_unittest.cc', 218 'wm/split_view_controller_unittest.cc',
223 'wm/window_list_provider_impl_unittest.cc', 219 'wm/window_list_provider_impl_unittest.cc',
224 'wm/window_manager_unittest.cc', 220 'wm/window_manager_unittest.cc',
225 ], 221 ],
226 } 222 }
227 ], 223 ],
228 } 224 }
229 225
OLDNEW
« no previous file with comments | « athena/activity/public/activity_factory.h ('k') | athena/content/app_activity.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698