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", | |
25 "ImageResource.h", | |
26 "ImageResourceContent.cpp", | |
27 "ImageResourceContent.h", | |
28 "ImageResourceInfo.h", | |
29 "IntegrityMetadata.cpp", | 24 "IntegrityMetadata.cpp", |
30 "IntegrityMetadata.h", | 25 "IntegrityMetadata.h", |
31 "MemoryCache.cpp", | 26 "MemoryCache.cpp", |
32 "MemoryCache.h", | 27 "MemoryCache.h", |
33 "MultipartImageResourceParser.cpp", | |
34 "MultipartImageResourceParser.h", | |
35 "RawResource.cpp", | 28 "RawResource.cpp", |
36 "RawResource.h", | 29 "RawResource.h", |
37 "Resource.cpp", | 30 "Resource.cpp", |
38 "Resource.h", | 31 "Resource.h", |
39 "ResourceClient.h", | 32 "ResourceClient.h", |
40 "ResourceClientWalker.h", | 33 "ResourceClientWalker.h", |
41 "ResourceFetcher.cpp", | 34 "ResourceFetcher.cpp", |
42 "ResourceFetcher.h", | 35 "ResourceFetcher.h", |
43 "ResourceLoader.cpp", | 36 "ResourceLoader.cpp", |
44 "ResourceLoader.h", | 37 "ResourceLoader.h", |
45 "ResourceLoaderOptions.h", | 38 "ResourceLoaderOptions.h", |
46 "ResourceLoadingLog.h", | 39 "ResourceLoadingLog.h", |
47 "ResourceStatus.h", | 40 "ResourceStatus.h", |
48 "SubstituteData.h", | 41 "SubstituteData.h", |
49 "UniqueIdentifier.cpp", | 42 "UniqueIdentifier.cpp", |
50 "UniqueIdentifier.h", | 43 "UniqueIdentifier.h", |
51 ] | 44 ] |
52 | 45 |
53 configs += [ | 46 configs += [ |
54 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 47 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
55 "//build/config/compiler:no_size_t_to_int_warning", | 48 "//build/config/compiler:no_size_t_to_int_warning", |
56 ] | 49 ] |
57 } | 50 } |
OLD | NEW |