| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 "SinkDocument.cpp", | 49 "SinkDocument.cpp", |
| 50 "SinkDocument.h", | 50 "SinkDocument.h", |
| 51 "TextResourceDecoderBuilder.cpp", | 51 "TextResourceDecoderBuilder.cpp", |
| 52 "TextResourceDecoderBuilder.h", | 52 "TextResourceDecoderBuilder.h", |
| 53 "TextTrackLoader.cpp", | 53 "TextTrackLoader.cpp", |
| 54 "TextTrackLoader.h", | 54 "TextTrackLoader.h", |
| 55 "ThreadableLoader.cpp", | 55 "ThreadableLoader.cpp", |
| 56 "ThreadableLoaderClient.h", | 56 "ThreadableLoaderClient.h", |
| 57 "WorkerThreadableLoader.cpp", | 57 "WorkerThreadableLoader.cpp", |
| 58 "WorkerThreadableLoader.h", | 58 "WorkerThreadableLoader.h", |
| 59 "WorkletScriptLoader.cpp", |
| 60 "WorkletScriptLoader.h", |
| 59 "appcache/ApplicationCache.cpp", | 61 "appcache/ApplicationCache.cpp", |
| 60 "appcache/ApplicationCache.h", | 62 "appcache/ApplicationCache.h", |
| 61 "appcache/ApplicationCacheHost.cpp", | 63 "appcache/ApplicationCacheHost.cpp", |
| 62 "appcache/ApplicationCacheHost.h", | 64 "appcache/ApplicationCacheHost.h", |
| 63 "resource/CSSStyleSheetResource.cpp", | 65 "resource/CSSStyleSheetResource.cpp", |
| 64 "resource/CSSStyleSheetResource.h", | 66 "resource/CSSStyleSheetResource.h", |
| 65 "resource/DocumentResource.cpp", | 67 "resource/DocumentResource.cpp", |
| 66 "resource/DocumentResource.h", | 68 "resource/DocumentResource.h", |
| 67 "resource/FontResource.cpp", | 69 "resource/FontResource.cpp", |
| 68 "resource/FontResource.h", | 70 "resource/FontResource.h", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 86 "resource/TextResource.h", | 88 "resource/TextResource.h", |
| 87 "resource/XSLStyleSheetResource.cpp", | 89 "resource/XSLStyleSheetResource.cpp", |
| 88 "resource/XSLStyleSheetResource.h", | 90 "resource/XSLStyleSheetResource.h", |
| 89 ] | 91 ] |
| 90 | 92 |
| 91 configs += [ | 93 configs += [ |
| 92 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 94 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 93 "//build/config/compiler:no_size_t_to_int_warning", | 95 "//build/config/compiler:no_size_t_to_int_warning", |
| 94 ] | 96 ] |
| 95 } | 97 } |
| OLD | NEW |