| 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 23 matching lines...) Expand all Loading... |
| 34 "Resource.cpp", | 34 "Resource.cpp", |
| 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 "ResourceStatus.h", |
| 44 "SubstituteData.h", | 45 "SubstituteData.h", |
| 45 "UniqueIdentifier.cpp", | 46 "UniqueIdentifier.cpp", |
| 46 "UniqueIdentifier.h", | 47 "UniqueIdentifier.h", |
| 47 ] | 48 ] |
| 48 | 49 |
| 49 configs += [ | 50 configs += [ |
| 50 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 51 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 51 "//build/config/compiler:no_size_t_to_int_warning", | 52 "//build/config/compiler:no_size_t_to_int_warning", |
| 52 ] | 53 ] |
| 53 } | 54 } |
| OLD | NEW |