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

Side by Side Diff: athena/athena.gyp

Issue 584263002: Use ChromeAutocompleteSchemeClassifier for Athena on Chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix 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 | « 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 'wm/window_overview_mode.cc', 119 'wm/window_overview_mode.cc',
120 'wm/window_overview_mode.h', 120 'wm/window_overview_mode.h',
121 ], 121 ],
122 }, 122 },
123 { 123 {
124 'target_name': 'athena_content_lib', 124 'target_name': 'athena_content_lib',
125 'type': 'static_library', 125 'type': 'static_library',
126 'dependencies': [ 126 'dependencies': [
127 'athena_lib', 127 'athena_lib',
128 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 128 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
129 '../components/components.gyp:component_metrics_proto',
129 '../components/components.gyp:native_app_window', 130 '../components/components.gyp:native_app_window',
131 '../components/components.gyp:omnibox',
130 '../components/components.gyp:renderer_context_menu', 132 '../components/components.gyp:renderer_context_menu',
131 '../components/components.gyp:web_modal', 133 '../components/components.gyp:web_modal',
132 '../extensions/extensions.gyp:extensions_browser', 134 '../extensions/extensions.gyp:extensions_browser',
133 '../extensions/extensions.gyp:extensions_common', 135 '../extensions/extensions.gyp:extensions_common',
134 '../content/content.gyp:content_browser', 136 '../content/content.gyp:content_browser',
135 '../ui/app_list/app_list.gyp:app_list', 137 '../ui/app_list/app_list.gyp:app_list',
136 '../ui/keyboard/keyboard.gyp:keyboard', 138 '../ui/keyboard/keyboard.gyp:keyboard',
137 '../ui/keyboard/keyboard.gyp:keyboard_resources', 139 '../ui/keyboard/keyboard.gyp:keyboard_resources',
138 '../third_party/WebKit/public/blink.gyp:blink', 140 '../third_party/WebKit/public/blink.gyp:blink',
139 '../ui/views/controls/webview/webview.gyp:webview', 141 '../ui/views/controls/webview/webview.gyp:webview',
140 '../skia/skia.gyp:skia', 142 '../skia/skia.gyp:skia',
141 ], 143 ],
142 'sources': [ 144 'sources': [
143 'content/app_activity.cc', 145 'content/app_activity.cc',
144 'content/app_activity.h', 146 'content/app_activity.h',
145 'content/app_activity_proxy.cc', 147 'content/app_activity_proxy.cc',
146 'content/app_activity_proxy.h', 148 'content/app_activity_proxy.h',
147 'content/app_activity_registry.cc', 149 'content/app_activity_registry.cc',
148 'content/app_activity_registry.h', 150 'content/app_activity_registry.h',
149 'content/app_registry_impl.cc', 151 'content/app_registry_impl.cc',
150 'content/content_activity_factory.cc', 152 'content/content_activity_factory.cc',
151 'content/content_activity_factory.h', 153 'content/content_activity_factory.h',
152 'content/content_proxy.cc', 154 'content/content_proxy.cc',
153 'content/content_proxy.h', 155 'content/content_proxy.h',
154 'content/public/app_registry.h', 156 'content/public/app_registry.h',
155 'content/public/content_activity_factory_creator.h', 157 'content/public/content_activity_factory_creator.h',
156 'content/public/dialogs.h', 158 'content/public/dialogs.h',
159 'content/public/scheme_classifier_factory.h',
157 'content/public/web_contents_view_delegate_creator.h', 160 'content/public/web_contents_view_delegate_creator.h',
158 'content/render_view_context_menu_impl.cc', 161 'content/render_view_context_menu_impl.cc',
159 'content/render_view_context_menu_impl.h', 162 'content/render_view_context_menu_impl.h',
160 'content/web_activity.cc', 163 'content/web_activity.cc',
161 'content/web_activity.h', 164 'content/web_activity.h',
162 'content/web_contents_view_delegate_factory_impl.cc', 165 'content/web_contents_view_delegate_factory_impl.cc',
163 'extensions/athena_app_delegate_base.cc', 166 'extensions/athena_app_delegate_base.cc',
164 'extensions/athena_app_delegate_base.h', 167 'extensions/athena_app_delegate_base.h',
165 'extensions/athena_app_window_client_base.cc', 168 'extensions/athena_app_window_client_base.cc',
166 'extensions/athena_app_window_client_base.h', 169 'extensions/athena_app_window_client_base.h',
167 'extensions/athena_native_app_window_views.cc', 170 'extensions/athena_native_app_window_views.cc',
168 'extensions/athena_native_app_window_views.h', 171 'extensions/athena_native_app_window_views.h',
169 'extensions/extension_app_model_builder.cc', 172 'extensions/extension_app_model_builder.cc',
170 'extensions/extensions_delegate.cc', 173 'extensions/extensions_delegate.cc',
171 'extensions/public/extension_app_model_builder.h', 174 'extensions/public/extension_app_model_builder.h',
172 'extensions/public/extensions_delegate.h', 175 'extensions/public/extensions_delegate.h',
173 'virtual_keyboard/public/virtual_keyboard_manager.h', 176 'virtual_keyboard/public/virtual_keyboard_manager.h',
174 'virtual_keyboard/virtual_keyboard_manager_impl.cc', 177 'virtual_keyboard/virtual_keyboard_manager_impl.cc',
175 ], 178 ],
176 }, 179 },
177 { 180 {
178 'target_name': 'athena_chrome_lib', 181 'target_name': 'athena_chrome_lib',
179 'type': 'static_library', 182 'type': 'static_library',
180 'dependencies': [ 183 'dependencies': [
184 '../components/components.gyp:component_metrics_proto',
181 '../chrome/chrome.gyp:browser_extensions', 185 '../chrome/chrome.gyp:browser_extensions',
186 '../components/components.gyp:omnibox',
182 ], 187 ],
183 'sources': [ 188 'sources': [
184 'content/chrome/content_activity_factory.cc', 189 'content/chrome/content_activity_factory.cc',
185 'content/chrome/dialogs.cc', 190 'content/chrome/dialogs.cc',
191 'content/chrome/scheme_classifier_factory.cc',
186 'extensions/chrome/athena_chrome_app_delegate.cc', 192 'extensions/chrome/athena_chrome_app_delegate.cc',
187 'extensions/chrome/athena_chrome_app_delegate.h', 193 'extensions/chrome/athena_chrome_app_delegate.h',
188 'extensions/chrome/athena_chrome_app_window_client.cc', 194 'extensions/chrome/athena_chrome_app_window_client.cc',
189 'extensions/chrome/athena_chrome_app_window_client.h', 195 'extensions/chrome/athena_chrome_app_window_client.h',
190 'extensions/chrome/extensions_delegate_impl.cc', 196 'extensions/chrome/extensions_delegate_impl.cc',
191 ], 197 ],
192 }, 198 },
193 { 199 {
194 'target_name': 'athena_app_shell_lib', 200 'target_name': 'athena_app_shell_lib',
195 'type': 'static_library', 201 'type': 'static_library',
196 'dependencies': [ 202 'dependencies': [
203 '../components/components.gyp:component_metrics_proto',
204 '../components/components.gyp:omnibox',
197 '../extensions/shell/app_shell.gyp:app_shell_lib', 205 '../extensions/shell/app_shell.gyp:app_shell_lib',
198 '../skia/skia.gyp:skia', 206 '../skia/skia.gyp:skia',
199 ], 207 ],
200 'sources': [ 208 'sources': [
201 'content/shell/content_activity_factory.cc', 209 'content/shell/content_activity_factory.cc',
202 'content/shell/dialogs.cc', 210 'content/shell/dialogs.cc',
211 'content/shell/scheme_classifier_factory.cc',
203 'content/shell/shell_app_activity.cc', 212 'content/shell/shell_app_activity.cc',
204 'content/shell/shell_app_activity.h', 213 'content/shell/shell_app_activity.h',
205 'extensions/shell/extensions_delegate_impl.cc', 214 'extensions/shell/extensions_delegate_impl.cc',
206 'extensions/shell/athena_shell_app_delegate.cc', 215 'extensions/shell/athena_shell_app_delegate.cc',
207 'extensions/shell/athena_shell_app_delegate.h', 216 'extensions/shell/athena_shell_app_delegate.h',
208 'extensions/shell/athena_shell_app_window_client.cc', 217 'extensions/shell/athena_shell_app_window_client.cc',
209 'extensions/shell/athena_shell_app_window_client.h', 218 'extensions/shell/athena_shell_app_window_client.h',
210 'extensions/shell/athena_apps_client_delegate.h', 219 'extensions/shell/athena_apps_client_delegate.h',
211 ], 220 ],
212 }, 221 },
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
274 'screen/screen_manager_unittest.cc', 283 'screen/screen_manager_unittest.cc',
275 'test/athena_unittests.cc', 284 'test/athena_unittests.cc',
276 'wm/split_view_controller_unittest.cc', 285 'wm/split_view_controller_unittest.cc',
277 'wm/window_list_provider_impl_unittest.cc', 286 'wm/window_list_provider_impl_unittest.cc',
278 'wm/window_manager_unittest.cc', 287 'wm/window_manager_unittest.cc',
279 ], 288 ],
280 } 289 }
281 ], 290 ],
282 } 291 }
283 292
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