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

Side by Side Diff: athena/athena.gyp

Issue 487843003: ExtensionDelegate to abstract extension implementation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix deps Created 6 years, 4 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
« no previous file with comments | « no previous file | athena/content/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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 ], 96 ],
97 }, 97 },
98 { 98 {
99 'target_name': 'athena_content_lib', 99 'target_name': 'athena_content_lib',
100 'type': 'static_library', 100 'type': 'static_library',
101 'dependencies': [ 101 'dependencies': [
102 'athena_lib', 102 'athena_lib',
103 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 103 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
104 '../components/components.gyp:renderer_context_menu', 104 '../components/components.gyp:renderer_context_menu',
105 '../components/components.gyp:web_modal', 105 '../components/components.gyp:web_modal',
106 '../extensions/extensions.gyp:extensions_browser',
107 '../extensions/extensions.gyp:extensions_common',
108 '../extensions/shell/app_shell.gyp:app_shell_lib',
106 '../content/content.gyp:content_browser', 109 '../content/content.gyp:content_browser',
107 '../ui/app_list/app_list.gyp:app_list', 110 '../ui/app_list/app_list.gyp:app_list',
108 '../ui/keyboard/keyboard.gyp:keyboard', 111 '../ui/keyboard/keyboard.gyp:keyboard',
109 '../ui/keyboard/keyboard.gyp:keyboard_resources', 112 '../ui/keyboard/keyboard.gyp:keyboard_resources',
110 '../third_party/WebKit/public/blink.gyp:blink', 113 '../third_party/WebKit/public/blink.gyp:blink',
111 '../ui/views/controls/webview/webview.gyp:webview', 114 '../ui/views/controls/webview/webview.gyp:webview',
112 '../skia/skia.gyp:skia', 115 '../skia/skia.gyp:skia',
113 ], 116 ],
114 'defines': [ 117 'defines': [
115 'ATHENA_IMPLEMENTATION', 118 'ATHENA_IMPLEMENTATION',
(...skipping 10 matching lines...) Expand all
126 'content/content_app_model_builder.cc', 129 'content/content_app_model_builder.cc',
127 'content/public/app_registry.h', 130 'content/public/app_registry.h',
128 'content/public/content_activity_factory.h', 131 'content/public/content_activity_factory.h',
129 'content/public/content_app_model_builder.h', 132 'content/public/content_app_model_builder.h',
130 'content/public/web_contents_view_delegate_creator.h', 133 'content/public/web_contents_view_delegate_creator.h',
131 'content/render_view_context_menu_impl.cc', 134 'content/render_view_context_menu_impl.cc',
132 'content/render_view_context_menu_impl.h', 135 'content/render_view_context_menu_impl.h',
133 'content/web_activity.cc', 136 'content/web_activity.cc',
134 'content/web_activity.h', 137 'content/web_activity.h',
135 'content/web_contents_view_delegate_factory_impl.cc', 138 'content/web_contents_view_delegate_factory_impl.cc',
139 'extensions/public/extensions_delegate.h',
140 'extensions/extensions_delegate_impl.cc',
136 'virtual_keyboard/public/virtual_keyboard_manager.h', 141 'virtual_keyboard/public/virtual_keyboard_manager.h',
137 'virtual_keyboard/virtual_keyboard_manager_impl.cc', 142 'virtual_keyboard/virtual_keyboard_manager_impl.cc',
138 ], 143 ],
139 }, 144 },
140 { 145 {
141 'target_name': 'athena_content_support_lib', 146 'target_name': 'athena_content_support_lib',
142 'type': 'static_library', 147 'type': 'static_library',
143 'dependencies': [ 148 'dependencies': [
144 '../content/content.gyp:content_browser', 149 '../content/content.gyp:content_browser',
145 ], 150 ],
(...skipping 17 matching lines...) Expand all
163 '../ui/compositor/compositor.gyp:compositor_test_support', 168 '../ui/compositor/compositor.gyp:compositor_test_support',
164 '../ui/views/views.gyp:views', 169 '../ui/views/views.gyp:views',
165 '../ui/wm/wm.gyp:wm', 170 '../ui/wm/wm.gyp:wm',
166 '../url/url.gyp:url_lib', 171 '../url/url.gyp:url_lib',
167 'athena_content_lib', 172 'athena_content_lib',
168 'athena_lib', 173 'athena_lib',
169 'resources/athena_resources.gyp:athena_resources', 174 'resources/athena_resources.gyp:athena_resources',
170 ], 175 ],
171 'sources': [ 176 'sources': [
172 'content/public/app_content_control_delegate.h', 177 'content/public/app_content_control_delegate.h',
178 'extensions/test/test_extensions_delegate.cc',
173 'test/athena_test_base.cc', 179 'test/athena_test_base.cc',
174 'test/athena_test_base.h', 180 'test/athena_test_base.h',
175 'test/athena_test_helper.cc', 181 'test/athena_test_helper.cc',
176 'test/athena_test_helper.h', 182 'test/athena_test_helper.h',
177 'test/sample_activity.cc', 183 'test/sample_activity.cc',
178 'test/sample_activity.h', 184 'test/sample_activity.h',
179 'test/sample_activity_factory.cc', 185 'test/sample_activity_factory.cc',
180 'test/sample_activity_factory.h', 186 'test/sample_activity_factory.h',
181 'test/test_app_content_control_delegate_impl.cc', 187 'test/test_app_content_control_delegate_impl.cc',
182 'test/test_app_model_builder.cc', 188 'test/test_app_model_builder.cc',
(...skipping 24 matching lines...) Expand all
207 'screen/screen_manager_unittest.cc', 213 'screen/screen_manager_unittest.cc',
208 'test/athena_unittests.cc', 214 'test/athena_unittests.cc',
209 'wm/split_view_controller_unittest.cc', 215 'wm/split_view_controller_unittest.cc',
210 'wm/window_list_provider_impl_unittest.cc', 216 'wm/window_list_provider_impl_unittest.cc',
211 'wm/window_manager_unittest.cc', 217 'wm/window_manager_unittest.cc',
212 ], 218 ],
213 } 219 }
214 ], 220 ],
215 } 221 }
216 222
OLDNEW
« no previous file with comments | « no previous file | athena/content/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698