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 "CSSStyleSheetResource.cpp", | |
11 "CSSStyleSheetResource.h", | |
12 "CachedMetadata.cpp", | |
13 "CachedMetadata.h", | |
14 "CachedMetadataHandler.h", | |
15 "ClientHintsPreferences.cpp", | |
16 "ClientHintsPreferences.h", | |
17 "CrossOriginAccessControl.cpp", | |
18 "CrossOriginAccessControl.h", | |
19 "DocumentResource.cpp", | |
20 "DocumentResource.h", | |
21 "DocumentResourceReference.h", | |
22 "FetchContext.cpp", | |
23 "FetchContext.h", | |
24 "FetchInitiatorInfo.h", | |
25 "FetchRequest.cpp", | |
26 "FetchRequest.h", | |
27 "FetchUtils.cpp", | |
28 "FetchUtils.h", | |
29 "FontResource.cpp", | |
30 "FontResource.h", | |
31 "ImageResource.cpp", | |
32 "ImageResource.h", | |
33 "IntegrityMetadata.cpp", | |
34 "IntegrityMetadata.h", | |
35 "LinkFetchResource.cpp", | |
36 "LinkFetchResource.h", | |
37 "MemoryCache.cpp", | |
38 "MemoryCache.h", | |
39 "MultipartImageResourceParser.cpp", | |
40 "MultipartImageResourceParser.h", | |
41 "RawResource.cpp", | |
42 "RawResource.h", | |
43 "Resource.cpp", | |
44 "Resource.h", | |
45 "ResourceClientWalker.h", | |
46 "ResourceFetcher.cpp", | |
47 "ResourceFetcher.h", | |
48 "ResourceLoader.cpp", | |
49 "ResourceLoader.h", | |
50 "ResourceLoaderOptions.h", | |
51 "ResourceLoadingLog.h", | |
52 "ScriptResource.cpp", | |
53 "ScriptResource.h", | |
54 "SubstituteData.h", | |
55 "TextResource.cpp", | |
56 "TextResource.h", | |
57 "UniqueIdentifier.cpp", | |
58 "UniqueIdentifier.h", | |
59 "XSLStyleSheetResource.cpp", | |
60 "XSLStyleSheetResource.h", | |
61 ] | |
62 | |
63 configs += [ | |
64 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | |
65 "//build/config/compiler:no_size_t_to_int_warning", | |
66 ] | |
67 } | |
OLD | NEW |