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

Side by Side Diff: content/content_child.gypi

Issue 1058873010: Move blink scheduler implementation into a component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'dependencies': [ 6 'dependencies': [
7 '../base/base.gyp:base', 7 '../base/base.gyp:base',
8 '../components/tracing.gyp:tracing', 8 '../components/tracing.gyp:tracing',
9 '../components/webcrypto/webcrypto.gyp:webcrypto', 9 '../components/webcrypto/webcrypto.gyp:webcrypto',
10 '../mojo/mojo_base.gyp:mojo_environment_chromium', 10 '../mojo/mojo_base.gyp:mojo_environment_chromium',
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 'child/push_messaging/push_provider.cc', 183 'child/push_messaging/push_provider.cc',
184 'child/push_messaging/push_provider.h', 184 'child/push_messaging/push_provider.h',
185 'child/quota_dispatcher.cc', 185 'child/quota_dispatcher.cc',
186 'child/quota_dispatcher.h', 186 'child/quota_dispatcher.h',
187 'child/quota_message_filter.cc', 187 'child/quota_message_filter.cc',
188 'child/quota_message_filter.h', 188 'child/quota_message_filter.h',
189 'child/request_extra_data.cc', 189 'child/request_extra_data.cc',
190 'child/request_extra_data.h', 190 'child/request_extra_data.h',
191 'child/request_info.cc', 191 'child/request_info.cc',
192 'child/request_info.h', 192 'child/request_info.h',
193 'child/scheduler/cancelable_closure_holder.cc',
194 'child/scheduler/cancelable_closure_holder.h',
195 'child/scheduler/child_scheduler.h',
196 'child/scheduler/nestable_single_thread_task_runner.h',
197 'child/scheduler/null_idle_task_runner.cc',
198 'child/scheduler/null_idle_task_runner.h',
199 'child/scheduler/null_worker_scheduler.cc',
200 'child/scheduler/null_worker_scheduler.h',
201 'child/scheduler/prioritizing_task_queue_selector.cc',
202 'child/scheduler/prioritizing_task_queue_selector.h',
203 'child/scheduler/scheduler_helper.cc',
204 'child/scheduler/scheduler_helper.h',
205 'child/scheduler/scheduler_message_loop_delegate.cc',
206 'child/scheduler/scheduler_message_loop_delegate.h',
207 'child/scheduler/single_thread_idle_task_runner.cc',
208 'child/scheduler/single_thread_idle_task_runner.h',
209 'child/scheduler/task_queue_selector.h',
210 'child/scheduler/task_queue_manager.cc',
211 'child/scheduler/task_queue_manager.h',
212 'child/scheduler/time_source.cc',
213 'child/scheduler/time_source.h',
214 'child/scheduler/webthread_impl_for_worker_scheduler.cc',
215 'child/scheduler/webthread_impl_for_worker_scheduler.h',
216 'child/scheduler/web_scheduler_impl.cc',
217 'child/scheduler/web_scheduler_impl.h',
218 'child/scheduler/worker_scheduler.cc',
219 'child/scheduler/worker_scheduler.h',
220 'child/scheduler/worker_scheduler_impl.cc',
221 'child/scheduler/worker_scheduler_impl.h',
222 'child/resource_dispatcher.cc', 193 'child/resource_dispatcher.cc',
223 'child/resource_dispatcher.h', 194 'child/resource_dispatcher.h',
224 'child/resource_scheduling_filter.cc', 195 'child/resource_scheduling_filter.cc',
225 'child/resource_scheduling_filter.h', 196 'child/resource_scheduling_filter.h',
226 'child/runtime_features.cc', 197 'child/runtime_features.cc',
227 'child/runtime_features.h', 198 'child/runtime_features.h',
199 'child/scheduler/webthread_impl_for_worker_scheduler.cc',
200 'child/scheduler/webthread_impl_for_worker_scheduler.h',
228 'child/scoped_child_process_reference.cc', 201 'child/scoped_child_process_reference.cc',
229 'child/scoped_child_process_reference.h', 202 'child/scoped_child_process_reference.h',
230 'child/service_worker/service_worker_dispatcher.cc', 203 'child/service_worker/service_worker_dispatcher.cc',
231 'child/service_worker/service_worker_dispatcher.h', 204 'child/service_worker/service_worker_dispatcher.h',
232 'child/service_worker/service_worker_handle_reference.cc', 205 'child/service_worker/service_worker_handle_reference.cc',
233 'child/service_worker/service_worker_handle_reference.h', 206 'child/service_worker/service_worker_handle_reference.h',
234 'child/service_worker/service_worker_message_filter.cc', 207 'child/service_worker/service_worker_message_filter.cc',
235 'child/service_worker/service_worker_message_filter.h', 208 'child/service_worker/service_worker_message_filter.h',
236 'child/service_worker/service_worker_network_provider.cc', 209 'child/service_worker/service_worker_network_provider.cc',
237 'child/service_worker/service_worker_network_provider.h', 210 'child/service_worker/service_worker_network_provider.h',
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 ['OS=="ios"', { 299 ['OS=="ios"', {
327 'sources/': [ 300 'sources/': [
328 # iOS only needs a small portion of content; exclude all the 301 # iOS only needs a small portion of content; exclude all the
329 # implementation, and re-include what is used. 302 # implementation, and re-include what is used.
330 ['exclude', '\\.(cc|mm)$'], 303 ['exclude', '\\.(cc|mm)$'],
331 ], 304 ],
332 }, { # OS!="ios" 305 }, { # OS!="ios"
333 'dependencies': [ 306 'dependencies': [
334 'app/resources/content_resources.gyp:content_resources', 307 'app/resources/content_resources.gyp:content_resources',
335 'app/strings/content_strings.gyp:content_strings', 308 'app/strings/content_strings.gyp:content_strings',
309 '../components/components.gyp:scheduler',
336 '../storage/storage_common.gyp:storage_common', 310 '../storage/storage_common.gyp:storage_common',
337 '../third_party/WebKit/public/blink.gyp:blink', 311 '../third_party/WebKit/public/blink.gyp:blink',
338 '../third_party/WebKit/public/blink_resources.gyp:blink_image_resources' , 312 '../third_party/WebKit/public/blink_resources.gyp:blink_image_resources' ,
339 '../third_party/WebKit/public/blink_resources.gyp:blink_resources', 313 '../third_party/WebKit/public/blink_resources.gyp:blink_resources',
340 '../third_party/npapi/npapi.gyp:npapi', 314 '../third_party/npapi/npapi.gyp:npapi',
341 ], 315 ],
342 }], 316 }],
343 ['use_aura==1', { 317 ['use_aura==1', {
344 'sources!': [ 318 'sources!': [
345 'child/npapi/webplugin_delegate_impl_mac.mm', 319 'child/npapi/webplugin_delegate_impl_mac.mm',
346 ], 320 ],
347 }], 321 }],
348 ['OS=="win"', { 322 ['OS=="win"', {
349 'sources!': [ 323 'sources!': [
350 'child/npapi/webplugin_delegate_impl_aura.cc', 324 'child/npapi/webplugin_delegate_impl_aura.cc',
351 ], 325 ],
352 }], 326 }],
353 ], 327 ],
354 } 328 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698