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

Side by Side Diff: content/content_child.gypi

Issue 892543002: workers: Introduce a WorkerMessageFilter to ease routing/processing worker messages. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 years, 10 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 '../mojo/mojo_base.gyp:mojo_environment_chromium', 9 '../mojo/mojo_base.gyp:mojo_environment_chromium',
10 '../mojo/mojo_base.gyp:mojo_common_lib', 10 '../mojo/mojo_base.gyp:mojo_common_lib',
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 'child/webthemeengine_impl_android.h', 265 'child/webthemeengine_impl_android.h',
266 'child/webthemeengine_impl_default.cc', 266 'child/webthemeengine_impl_default.cc',
267 'child/webthemeengine_impl_default.h', 267 'child/webthemeengine_impl_default.h',
268 'child/webthemeengine_impl_mac.h', 268 'child/webthemeengine_impl_mac.h',
269 'child/webthread_impl.cc', 269 'child/webthread_impl.cc',
270 'child/webthread_impl.h', 270 'child/webthread_impl.h',
271 'child/weburlresponse_extradata_impl.cc', 271 'child/weburlresponse_extradata_impl.cc',
272 'child/weburlresponse_extradata_impl.h', 272 'child/weburlresponse_extradata_impl.h',
273 'child/worker_task_runner.cc', 273 'child/worker_task_runner.cc',
274 'child/worker_task_runner.h', 274 'child/worker_task_runner.h',
275 'child/worker_thread_message_filter.cc',
276 'child/worker_thread_message_filter.h',
275 'child/worker_thread_task_runner.cc', 277 'child/worker_thread_task_runner.cc',
276 'child/worker_thread_task_runner.h', 278 'child/worker_thread_task_runner.h',
277 ], 279 ],
278 'webcrypto_nss_sources': [ 280 'webcrypto_nss_sources': [
279 'child/webcrypto/nss/aes_algorithm_nss.cc', 281 'child/webcrypto/nss/aes_algorithm_nss.cc',
280 'child/webcrypto/nss/aes_algorithm_nss.h', 282 'child/webcrypto/nss/aes_algorithm_nss.h',
281 'child/webcrypto/nss/aes_cbc_nss.cc', 283 'child/webcrypto/nss/aes_cbc_nss.cc',
282 'child/webcrypto/nss/aes_gcm_nss.cc', 284 'child/webcrypto/nss/aes_gcm_nss.cc',
283 'child/webcrypto/nss/aes_kw_nss.cc', 285 'child/webcrypto/nss/aes_kw_nss.cc',
284 'child/webcrypto/nss/hmac_nss.cc', 286 'child/webcrypto/nss/hmac_nss.cc',
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
394 }, { 396 }, {
395 'dependencies': [ 397 'dependencies': [
396 '../third_party/nss/nss.gyp:nspr', 398 '../third_party/nss/nss.gyp:nspr',
397 '../third_party/nss/nss.gyp:nss', 399 '../third_party/nss/nss.gyp:nss',
398 ], 400 ],
399 }], 401 }],
400 ], 402 ],
401 }], 403 }],
402 ], 404 ],
403 } 405 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698