OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 import("//third_party/WebKit/Source/modules/modules.gni") | 5 import("//third_party/WebKit/Source/modules/modules.gni") |
6 | 6 |
7 blink_modules_sources("fetch") { | 7 blink_modules_sources("fetch") { |
8 sources = [ | 8 sources = [ |
| 9 "BlobBytesConsumer.cpp", |
| 10 "BlobBytesConsumer.h", |
9 "Body.cpp", | 11 "Body.cpp", |
10 "Body.h", | 12 "Body.h", |
11 "BodyStreamBuffer.cpp", | 13 "BodyStreamBuffer.cpp", |
12 "BodyStreamBuffer.h", | 14 "BodyStreamBuffer.h", |
13 "BytesConsumer.cpp", | 15 "BytesConsumer.cpp", |
14 "BytesConsumer.h", | 16 "BytesConsumer.h", |
15 "BytesConsumerForDataConsumerHandle.cpp", | 17 "BytesConsumerForDataConsumerHandle.cpp", |
16 "BytesConsumerForDataConsumerHandle.h", | 18 "BytesConsumerForDataConsumerHandle.h", |
17 "CompositeDataConsumerHandle.cpp", | 19 "CompositeDataConsumerHandle.cpp", |
18 "CompositeDataConsumerHandle.h", | 20 "CompositeDataConsumerHandle.h", |
(...skipping 24 matching lines...) Expand all Loading... |
43 "ReadableStreamDataConsumerHandle.h", | 45 "ReadableStreamDataConsumerHandle.h", |
44 "Request.cpp", | 46 "Request.cpp", |
45 "Request.h", | 47 "Request.h", |
46 "RequestInit.cpp", | 48 "RequestInit.cpp", |
47 "RequestInit.h", | 49 "RequestInit.h", |
48 "Response.cpp", | 50 "Response.cpp", |
49 "Response.h", | 51 "Response.h", |
50 "ResponseInit.h", | 52 "ResponseInit.h", |
51 ] | 53 ] |
52 } | 54 } |
OLD | NEW |