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