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

Side by Side Diff: content/content_child.gypi

Issue 1103813002: Make WebURLLoader capable of retaining received buffers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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 | « content/child/web_url_loader_impl_unittest.cc ('k') | content/content_tests.gypi » ('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 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/mime_util/mime_util.gyp:mime_util', 8 '../components/mime_util/mime_util.gyp:mime_util',
9 '../components/tracing.gyp:tracing', 9 '../components/tracing.gyp:tracing',
10 '../components/webcrypto/webcrypto.gyp:webcrypto', 10 '../components/webcrypto/webcrypto.gyp:webcrypto',
11 '../mojo/mojo_base.gyp:mojo_environment_chromium', 11 '../mojo/mojo_base.gyp:mojo_environment_chromium',
12 '../mojo/mojo_base.gyp:mojo_common_lib', 12 '../mojo/mojo_base.gyp:mojo_common_lib',
13 '../skia/skia.gyp:skia', 13 '../skia/skia.gyp:skia',
14 '../ui/base/ui_base.gyp:ui_base', 14 '../ui/base/ui_base.gyp:ui_base',
15 '../ui/events/events.gyp:gestures_blink', 15 '../ui/events/events.gyp:gestures_blink',
16 '../ui/gfx/gfx.gyp:gfx', 16 '../ui/gfx/gfx.gyp:gfx',
17 '../ui/gfx/gfx.gyp:gfx_geometry', 17 '../ui/gfx/gfx.gyp:gfx_geometry',
18 '../url/url.gyp:url_lib', 18 '../url/url.gyp:url_lib',
19 'content_common_mojo_bindings.gyp:content_common_mojo_bindings', 19 'content_common_mojo_bindings.gyp:content_common_mojo_bindings',
20 ], 20 ],
21 'include_dirs': [ 21 'include_dirs': [
22 '..', 22 '..',
23 ], 23 ],
24 'export_dependent_settings': [ 24 'export_dependent_settings': [
25 '../base/base.gyp:base', 25 '../base/base.gyp:base',
26 ], 26 ],
27 'variables': { 27 'variables': {
28 'public_child_sources': [ 28 'public_child_sources': [
29 'public/child/child_thread.h', 29 'public/child/child_thread.h',
30 'public/child/fixed_received_data.cc',
31 'public/child/fixed_received_data.h',
30 'public/child/image_decoder_utils.h', 32 'public/child/image_decoder_utils.h',
31 'public/child/request_peer.h', 33 'public/child/request_peer.h',
32 'public/child/resource_dispatcher_delegate.h', 34 'public/child/resource_dispatcher_delegate.h',
33 'public/child/v8_value_converter.h', 35 'public/child/v8_value_converter.h',
34 ], 36 ],
35 'private_child_sources': [ 37 'private_child_sources': [
36 'child/appcache/appcache_backend_proxy.cc', 38 'child/appcache/appcache_backend_proxy.cc',
37 'child/appcache/appcache_backend_proxy.h', 39 'child/appcache/appcache_backend_proxy.h',
38 'child/appcache/appcache_dispatcher.cc', 40 'child/appcache/appcache_dispatcher.cc',
39 'child/appcache/appcache_dispatcher.h', 41 'child/appcache/appcache_dispatcher.h',
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 'child/request_info.cc', 200 'child/request_info.cc',
199 'child/request_info.h', 201 'child/request_info.h',
200 'child/resource_dispatcher.cc', 202 'child/resource_dispatcher.cc',
201 'child/resource_dispatcher.h', 203 'child/resource_dispatcher.h',
202 'child/resource_scheduling_filter.cc', 204 'child/resource_scheduling_filter.cc',
203 'child/resource_scheduling_filter.h', 205 'child/resource_scheduling_filter.h',
204 'child/runtime_features.cc', 206 'child/runtime_features.cc',
205 'child/runtime_features.h', 207 'child/runtime_features.h',
206 'child/scoped_child_process_reference.cc', 208 'child/scoped_child_process_reference.cc',
207 'child/scoped_child_process_reference.h', 209 'child/scoped_child_process_reference.h',
210 'child/shared_memory_received_data_factory.cc',
211 'child/shared_memory_received_data_factory.h',
208 'child/service_worker/service_worker_dispatcher.cc', 212 'child/service_worker/service_worker_dispatcher.cc',
209 'child/service_worker/service_worker_dispatcher.h', 213 'child/service_worker/service_worker_dispatcher.h',
210 'child/service_worker/service_worker_handle_reference.cc', 214 'child/service_worker/service_worker_handle_reference.cc',
211 'child/service_worker/service_worker_handle_reference.h', 215 'child/service_worker/service_worker_handle_reference.h',
212 'child/service_worker/service_worker_message_filter.cc', 216 'child/service_worker/service_worker_message_filter.cc',
213 'child/service_worker/service_worker_message_filter.h', 217 'child/service_worker/service_worker_message_filter.h',
214 'child/service_worker/service_worker_network_provider.cc', 218 'child/service_worker/service_worker_network_provider.cc',
215 'child/service_worker/service_worker_network_provider.h', 219 'child/service_worker/service_worker_network_provider.h',
216 'child/service_worker/service_worker_provider_context.cc', 220 'child/service_worker/service_worker_provider_context.cc',
217 'child/service_worker/service_worker_provider_context.h', 221 'child/service_worker/service_worker_provider_context.h',
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 'child/npapi/webplugin_delegate_impl_mac.mm', 332 'child/npapi/webplugin_delegate_impl_mac.mm',
329 ], 333 ],
330 }], 334 }],
331 ['OS=="win"', { 335 ['OS=="win"', {
332 'sources!': [ 336 'sources!': [
333 'child/npapi/webplugin_delegate_impl_aura.cc', 337 'child/npapi/webplugin_delegate_impl_aura.cc',
334 ], 338 ],
335 }], 339 }],
336 ], 340 ],
337 } 341 }
OLDNEW
« no previous file with comments | « content/child/web_url_loader_impl_unittest.cc ('k') | content/content_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698