| 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 "CookieJar.h", | 10 "CookieJar.h", |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 "SubresourceFilter.h", | 56 "SubresourceFilter.h", |
| 57 "TextResourceDecoderBuilder.cpp", | 57 "TextResourceDecoderBuilder.cpp", |
| 58 "TextResourceDecoderBuilder.h", | 58 "TextResourceDecoderBuilder.h", |
| 59 "TextTrackLoader.cpp", | 59 "TextTrackLoader.cpp", |
| 60 "TextTrackLoader.h", | 60 "TextTrackLoader.h", |
| 61 "ThreadableLoader.cpp", | 61 "ThreadableLoader.cpp", |
| 62 "ThreadableLoader.h", | 62 "ThreadableLoader.h", |
| 63 "ThreadableLoaderClient.h", | 63 "ThreadableLoaderClient.h", |
| 64 "ThreadableLoadingContext.cpp", | 64 "ThreadableLoadingContext.cpp", |
| 65 "ThreadableLoadingContext.h", | 65 "ThreadableLoadingContext.h", |
| 66 "WorkerFetchContext.cpp", |
| 67 "WorkerFetchContext.h", |
| 66 "WorkerThreadableLoader.cpp", | 68 "WorkerThreadableLoader.cpp", |
| 67 "WorkerThreadableLoader.h", | 69 "WorkerThreadableLoader.h", |
| 68 "WorkletScriptLoader.cpp", | 70 "WorkletScriptLoader.cpp", |
| 69 "WorkletScriptLoader.h", | 71 "WorkletScriptLoader.h", |
| 70 "appcache/ApplicationCache.cpp", | 72 "appcache/ApplicationCache.cpp", |
| 71 "appcache/ApplicationCache.h", | 73 "appcache/ApplicationCache.h", |
| 72 "appcache/ApplicationCacheHost.cpp", | 74 "appcache/ApplicationCacheHost.cpp", |
| 73 "appcache/ApplicationCacheHost.h", | 75 "appcache/ApplicationCacheHost.h", |
| 74 "modulescript/ModuleScriptFetchRequest.h", | 76 "modulescript/ModuleScriptFetchRequest.h", |
| 75 "modulescript/ModuleScriptLoader.cpp", | 77 "modulescript/ModuleScriptLoader.cpp", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 "resource/TextResource.h", | 111 "resource/TextResource.h", |
| 110 "resource/XSLStyleSheetResource.cpp", | 112 "resource/XSLStyleSheetResource.cpp", |
| 111 "resource/XSLStyleSheetResource.h", | 113 "resource/XSLStyleSheetResource.h", |
| 112 ] | 114 ] |
| 113 | 115 |
| 114 configs += [ | 116 configs += [ |
| 115 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 117 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 116 "//build/config/compiler:no_size_t_to_int_warning", | 118 "//build/config/compiler:no_size_t_to_int_warning", |
| 117 ] | 119 ] |
| 118 } | 120 } |
| OLD | NEW |