| 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/core/core.gni") | 5 import("//third_party/WebKit/Source/core/core.gni") |
| 6 | 6 |
| 7 blink_core_sources("fetch") { | 7 blink_core_sources("fetch") { |
| 8 sources = [ | 8 sources = [ |
| 9 "AccessControlStatus.h", | 9 "AccessControlStatus.h", |
| 10 "CachedMetadata.cpp", | 10 "CachedMetadata.cpp", |
| 11 "CachedMetadata.h", | 11 "CachedMetadata.h", |
| 12 "CachedMetadataHandler.h", | 12 "CachedMetadataHandler.h", |
| 13 "ClientHintsPreferences.cpp", | 13 "ClientHintsPreferences.cpp", |
| 14 "ClientHintsPreferences.h", | 14 "ClientHintsPreferences.h", |
| 15 "CrossOriginAccessControl.cpp", | 15 "CrossOriginAccessControl.cpp", |
| 16 "CrossOriginAccessControl.h", | 16 "CrossOriginAccessControl.h", |
| 17 "FetchContext.cpp", | 17 "FetchContext.cpp", |
| 18 "FetchContext.h", | 18 "FetchContext.h", |
| 19 "FetchInitiatorInfo.h", | 19 "FetchInitiatorInfo.h", |
| 20 "FetchRequest.cpp", | 20 "FetchRequest.cpp", |
| 21 "FetchRequest.h", | 21 "FetchRequest.h", |
| 22 "FetchUtils.cpp", | 22 "FetchUtils.cpp", |
| 23 "FetchUtils.h", | 23 "FetchUtils.h", |
| 24 "ImageResource.cpp", | 24 "ImageResource.cpp", |
| 25 "ImageResource.h", | 25 "ImageResource.h", |
| 26 "ImageResourceContent.cpp", |
| 27 "ImageResourceContent.h", |
| 28 "ImageResourceInfo.h", |
| 26 "IntegrityMetadata.cpp", | 29 "IntegrityMetadata.cpp", |
| 27 "IntegrityMetadata.h", | 30 "IntegrityMetadata.h", |
| 28 "MemoryCache.cpp", | 31 "MemoryCache.cpp", |
| 29 "MemoryCache.h", | 32 "MemoryCache.h", |
| 30 "MultipartImageResourceParser.cpp", | 33 "MultipartImageResourceParser.cpp", |
| 31 "MultipartImageResourceParser.h", | 34 "MultipartImageResourceParser.h", |
| 32 "RawResource.cpp", | 35 "RawResource.cpp", |
| 33 "RawResource.h", | 36 "RawResource.h", |
| 34 "Resource.cpp", | 37 "Resource.cpp", |
| 35 "Resource.h", | 38 "Resource.h", |
| 36 "ResourceClient.h", | 39 "ResourceClient.h", |
| 37 "ResourceClientWalker.h", | 40 "ResourceClientWalker.h", |
| 38 "ResourceFetcher.cpp", | 41 "ResourceFetcher.cpp", |
| 39 "ResourceFetcher.h", | 42 "ResourceFetcher.h", |
| 40 "ResourceLoader.cpp", | 43 "ResourceLoader.cpp", |
| 41 "ResourceLoader.h", | 44 "ResourceLoader.h", |
| 42 "ResourceLoaderOptions.h", | 45 "ResourceLoaderOptions.h", |
| 43 "ResourceLoadingLog.h", | 46 "ResourceLoadingLog.h", |
| 44 "ResourceStatus.h", | 47 "ResourceStatus.h", |
| 45 "SubstituteData.h", | 48 "SubstituteData.h", |
| 46 "UniqueIdentifier.cpp", | 49 "UniqueIdentifier.cpp", |
| 47 "UniqueIdentifier.h", | 50 "UniqueIdentifier.h", |
| 48 ] | 51 ] |
| 49 | 52 |
| 50 configs += [ | 53 configs += [ |
| 51 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 54 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 52 "//build/config/compiler:no_size_t_to_int_warning", | 55 "//build/config/compiler:no_size_t_to_int_warning", |
| 53 ] | 56 ] |
| 54 } | 57 } |
| OLD | NEW |