| 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", |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 "Resource.h", | 35 "Resource.h", |
| 36 "ResourceClient.h", | 36 "ResourceClient.h", |
| 37 "ResourceClientWalker.h", | 37 "ResourceClientWalker.h", |
| 38 "ResourceFetcher.cpp", | 38 "ResourceFetcher.cpp", |
| 39 "ResourceFetcher.h", | 39 "ResourceFetcher.h", |
| 40 "ResourceLoader.cpp", | 40 "ResourceLoader.cpp", |
| 41 "ResourceLoader.h", | 41 "ResourceLoader.h", |
| 42 "ResourceLoaderOptions.h", | 42 "ResourceLoaderOptions.h", |
| 43 "ResourceLoadingLog.h", | 43 "ResourceLoadingLog.h", |
| 44 "SubstituteData.h", | 44 "SubstituteData.h", |
| 45 "TextResource.cpp", | |
| 46 "TextResource.h", | |
| 47 "UniqueIdentifier.cpp", | 45 "UniqueIdentifier.cpp", |
| 48 "UniqueIdentifier.h", | 46 "UniqueIdentifier.h", |
| 49 ] | 47 ] |
| 50 | 48 |
| 51 configs += [ | 49 configs += [ |
| 52 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 50 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 53 "//build/config/compiler:no_size_t_to_int_warning", | 51 "//build/config/compiler:no_size_t_to_int_warning", |
| 54 ] | 52 ] |
| 55 } | 53 } |
| OLD | NEW |