| 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 "CSSStyleSheetResource.cpp", | 10 "CSSStyleSheetResource.cpp", |
| 11 "CSSStyleSheetResource.h", | 11 "CSSStyleSheetResource.h", |
| 12 "CachedMetadata.cpp", | 12 "CachedMetadata.cpp", |
| 13 "CachedMetadata.h", | 13 "CachedMetadata.h", |
| 14 "CachedMetadataHandler.h", | 14 "CachedMetadataHandler.h", |
| 15 "ClientHintsPreferences.cpp", | 15 "ClientHintsPreferences.cpp", |
| 16 "ClientHintsPreferences.h", | 16 "ClientHintsPreferences.h", |
| 17 "CrossOriginAccessControl.cpp", | 17 "CrossOriginAccessControl.cpp", |
| 18 "CrossOriginAccessControl.h", | 18 "CrossOriginAccessControl.h", |
| 19 "FetchContext.cpp", | 19 "FetchContext.cpp", |
| 20 "FetchContext.h", | 20 "FetchContext.h", |
| 21 "FetchInitiatorInfo.h", | 21 "FetchInitiatorInfo.h", |
| 22 "FetchRequest.cpp", | 22 "FetchRequest.cpp", |
| 23 "FetchRequest.h", | 23 "FetchRequest.h", |
| 24 "FetchUtils.cpp", | 24 "FetchUtils.cpp", |
| 25 "FetchUtils.h", | 25 "FetchUtils.h", |
| 26 "FontResource.cpp", | 26 "FontResource.cpp", |
| 27 "FontResource.h", | 27 "FontResource.h", |
| 28 "ImageResource.cpp", | 28 "ImageResource.cpp", |
| 29 "ImageResource.h", | 29 "ImageResource.h", |
| 30 "ImageResourceContent.cpp", |
| 31 "ImageResourceContent.h", |
| 32 "ImageResourceContentInterface.h", |
| 33 "ImageResourceInfo.h", |
| 30 "IntegrityMetadata.cpp", | 34 "IntegrityMetadata.cpp", |
| 31 "IntegrityMetadata.h", | 35 "IntegrityMetadata.h", |
| 32 "MemoryCache.cpp", | 36 "MemoryCache.cpp", |
| 33 "MemoryCache.h", | 37 "MemoryCache.h", |
| 34 "MultipartImageResourceParser.cpp", | 38 "MultipartImageResourceParser.cpp", |
| 35 "MultipartImageResourceParser.h", | 39 "MultipartImageResourceParser.h", |
| 36 "RawResource.cpp", | 40 "RawResource.cpp", |
| 37 "RawResource.h", | 41 "RawResource.h", |
| 38 "Resource.cpp", | 42 "Resource.cpp", |
| 39 "Resource.h", | 43 "Resource.h", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 51 "TextResource.h", | 55 "TextResource.h", |
| 52 "UniqueIdentifier.cpp", | 56 "UniqueIdentifier.cpp", |
| 53 "UniqueIdentifier.h", | 57 "UniqueIdentifier.h", |
| 54 ] | 58 ] |
| 55 | 59 |
| 56 configs += [ | 60 configs += [ |
| 57 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 61 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 58 "//build/config/compiler:no_size_t_to_int_warning", | 62 "//build/config/compiler:no_size_t_to_int_warning", |
| 59 ] | 63 ] |
| 60 } | 64 } |
| OLD | NEW |