| 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", | 9 "BlobBytesConsumer.cpp", |
| 10 "BlobBytesConsumer.h", | 10 "BlobBytesConsumer.h", |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 "FetchFormDataConsumerHandle.cpp", | 30 "FetchFormDataConsumerHandle.cpp", |
| 31 "FetchFormDataConsumerHandle.h", | 31 "FetchFormDataConsumerHandle.h", |
| 32 "FetchHeaderList.cpp", | 32 "FetchHeaderList.cpp", |
| 33 "FetchHeaderList.h", | 33 "FetchHeaderList.h", |
| 34 "FetchManager.cpp", | 34 "FetchManager.cpp", |
| 35 "FetchManager.h", | 35 "FetchManager.h", |
| 36 "FetchRequestData.cpp", | 36 "FetchRequestData.cpp", |
| 37 "FetchRequestData.h", | 37 "FetchRequestData.h", |
| 38 "FetchResponseData.cpp", | 38 "FetchResponseData.cpp", |
| 39 "FetchResponseData.h", | 39 "FetchResponseData.h", |
| 40 "FormDataBytesConsumer.cpp", |
| 41 "FormDataBytesConsumer.h", |
| 40 "GlobalFetch.cpp", | 42 "GlobalFetch.cpp", |
| 41 "GlobalFetch.h", | 43 "GlobalFetch.h", |
| 42 "Headers.cpp", | 44 "Headers.cpp", |
| 43 "Headers.h", | 45 "Headers.h", |
| 44 "ReadableStreamDataConsumerHandle.cpp", | 46 "ReadableStreamDataConsumerHandle.cpp", |
| 45 "ReadableStreamDataConsumerHandle.h", | 47 "ReadableStreamDataConsumerHandle.h", |
| 46 "Request.cpp", | 48 "Request.cpp", |
| 47 "Request.h", | 49 "Request.h", |
| 48 "RequestInit.cpp", | 50 "RequestInit.cpp", |
| 49 "RequestInit.h", | 51 "RequestInit.h", |
| 50 "Response.cpp", | 52 "Response.cpp", |
| 51 "Response.h", | 53 "Response.h", |
| 52 "ResponseInit.h", | 54 "ResponseInit.h", |
| 53 ] | 55 ] |
| 54 } | 56 } |
| OLD | NEW |