| 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("loader") { | 7 blink_core_sources("loader") { |
| 8 sources = [ | 8 sources = [ |
| 9 "CookieJar.cpp", | 9 "CookieJar.cpp", |
| 10 "CrossOriginPreflightResultCache.cpp", | 10 "CrossOriginPreflightResultCache.cpp", |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 "appcache/ApplicationCache.cpp", | 59 "appcache/ApplicationCache.cpp", |
| 60 "appcache/ApplicationCache.h", | 60 "appcache/ApplicationCache.h", |
| 61 "appcache/ApplicationCacheHost.cpp", | 61 "appcache/ApplicationCacheHost.cpp", |
| 62 "appcache/ApplicationCacheHost.h", | 62 "appcache/ApplicationCacheHost.h", |
| 63 "resource/CSSStyleSheetResource.cpp", | 63 "resource/CSSStyleSheetResource.cpp", |
| 64 "resource/CSSStyleSheetResource.h", | 64 "resource/CSSStyleSheetResource.h", |
| 65 "resource/DocumentResource.cpp", | 65 "resource/DocumentResource.cpp", |
| 66 "resource/DocumentResource.h", | 66 "resource/DocumentResource.h", |
| 67 "resource/FontResource.cpp", | 67 "resource/FontResource.cpp", |
| 68 "resource/FontResource.h", | 68 "resource/FontResource.h", |
| 69 "resource/ImageResource.cpp", |
| 70 "resource/ImageResource.h", |
| 71 "resource/ImageResourceContent.cpp", |
| 72 "resource/ImageResourceContent.h", |
| 73 "resource/ImageResourceInfo.h", |
| 74 "resource/ImageResourceObserver.h", |
| 69 "resource/LinkFetchResource.cpp", | 75 "resource/LinkFetchResource.cpp", |
| 70 "resource/LinkFetchResource.h", | 76 "resource/LinkFetchResource.h", |
| 71 "resource/LinkPreloadResourceClients.cpp", | 77 "resource/LinkPreloadResourceClients.cpp", |
| 72 "resource/LinkPreloadResourceClients.h", | 78 "resource/LinkPreloadResourceClients.h", |
| 79 "resource/MultipartImageResourceParser.cpp", |
| 80 "resource/MultipartImageResourceParser.h", |
| 73 "resource/ScriptResource.cpp", | 81 "resource/ScriptResource.cpp", |
| 74 "resource/ScriptResource.h", | 82 "resource/ScriptResource.h", |
| 75 "resource/StyleSheetResource.h", | 83 "resource/StyleSheetResource.h", |
| 76 "resource/StyleSheetResourceClient.h", | 84 "resource/StyleSheetResourceClient.h", |
| 77 "resource/TextResource.cpp", | 85 "resource/TextResource.cpp", |
| 78 "resource/TextResource.h", | 86 "resource/TextResource.h", |
| 79 "resource/XSLStyleSheetResource.cpp", | 87 "resource/XSLStyleSheetResource.cpp", |
| 80 "resource/XSLStyleSheetResource.h", | 88 "resource/XSLStyleSheetResource.h", |
| 81 ] | 89 ] |
| 82 | 90 |
| 83 configs += [ | 91 configs += [ |
| 84 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 92 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 85 "//build/config/compiler:no_size_t_to_int_warning", | 93 "//build/config/compiler:no_size_t_to_int_warning", |
| 86 ] | 94 ] |
| 87 } | 95 } |
| OLD | NEW |