| 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 "ImageResourceContentInterface.h", |
| 29 "ImageResourceInfo.h", |
| 26 "IntegrityMetadata.cpp", | 30 "IntegrityMetadata.cpp", |
| 27 "IntegrityMetadata.h", | 31 "IntegrityMetadata.h", |
| 28 "MemoryCache.cpp", | 32 "MemoryCache.cpp", |
| 29 "MemoryCache.h", | 33 "MemoryCache.h", |
| 30 "MultipartImageResourceParser.cpp", | 34 "MultipartImageResourceParser.cpp", |
| 31 "MultipartImageResourceParser.h", | 35 "MultipartImageResourceParser.h", |
| 32 "RawResource.cpp", | 36 "RawResource.cpp", |
| 33 "RawResource.h", | 37 "RawResource.h", |
| 34 "Resource.cpp", | 38 "Resource.cpp", |
| 35 "Resource.h", | 39 "Resource.h", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 47 "TextResource.h", | 51 "TextResource.h", |
| 48 "UniqueIdentifier.cpp", | 52 "UniqueIdentifier.cpp", |
| 49 "UniqueIdentifier.h", | 53 "UniqueIdentifier.h", |
| 50 ] | 54 ] |
| 51 | 55 |
| 52 configs += [ | 56 configs += [ |
| 53 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 57 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 54 "//build/config/compiler:no_size_t_to_int_warning", | 58 "//build/config/compiler:no_size_t_to_int_warning", |
| 55 ] | 59 ] |
| 56 } | 60 } |
| OLD | NEW |