| 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 "DocumentResource.cpp", | 19 "DocumentResource.cpp", |
| 20 "DocumentResource.h", | 20 "DocumentResource.h", |
| 21 "DocumentResourceReference.h", |
| 21 "FetchContext.cpp", | 22 "FetchContext.cpp", |
| 22 "FetchContext.h", | 23 "FetchContext.h", |
| 23 "FetchInitiatorInfo.h", | 24 "FetchInitiatorInfo.h", |
| 24 "FetchRequest.cpp", | 25 "FetchRequest.cpp", |
| 25 "FetchRequest.h", | 26 "FetchRequest.h", |
| 26 "FetchUtils.cpp", | 27 "FetchUtils.cpp", |
| 27 "FetchUtils.h", | 28 "FetchUtils.h", |
| 28 "FontResource.cpp", | 29 "FontResource.cpp", |
| 29 "FontResource.h", | 30 "FontResource.h", |
| 30 "ImageResource.cpp", | 31 "ImageResource.cpp", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 57 "UniqueIdentifier.h", | 58 "UniqueIdentifier.h", |
| 58 "XSLStyleSheetResource.cpp", | 59 "XSLStyleSheetResource.cpp", |
| 59 "XSLStyleSheetResource.h", | 60 "XSLStyleSheetResource.h", |
| 60 ] | 61 ] |
| 61 | 62 |
| 62 configs += [ | 63 configs += [ |
| 63 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 64 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 64 "//build/config/compiler:no_size_t_to_int_warning", | 65 "//build/config/compiler:no_size_t_to_int_warning", |
| 65 ] | 66 ] |
| 66 } | 67 } |
| OLD | NEW |