| 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 "DocumentLoadTiming.cpp", | 10 "DocumentLoadTiming.cpp", |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 "PingLoader.h", | 40 "PingLoader.h", |
| 41 "PrerendererClient.cpp", | 41 "PrerendererClient.cpp", |
| 42 "PrerendererClient.h", | 42 "PrerendererClient.h", |
| 43 "ProgressTracker.cpp", | 43 "ProgressTracker.cpp", |
| 44 "TextResourceDecoderBuilder.cpp", | 44 "TextResourceDecoderBuilder.cpp", |
| 45 "TextResourceDecoderBuilder.h", | 45 "TextResourceDecoderBuilder.h", |
| 46 "TextTrackLoader.cpp", | 46 "TextTrackLoader.cpp", |
| 47 "TextTrackLoader.h", | 47 "TextTrackLoader.h", |
| 48 "ThreadableLoader.cpp", | 48 "ThreadableLoader.cpp", |
| 49 "ThreadableLoaderClient.h", | 49 "ThreadableLoaderClient.h", |
| 50 "ThreadableLoadingContext.cpp", |
| 51 "ThreadableLoadingContext.h", |
| 50 "WorkerThreadableLoader.cpp", | 52 "WorkerThreadableLoader.cpp", |
| 51 "WorkerThreadableLoader.h", | 53 "WorkerThreadableLoader.h", |
| 52 "WorkletScriptLoader.cpp", | 54 "WorkletScriptLoader.cpp", |
| 53 "WorkletScriptLoader.h", | 55 "WorkletScriptLoader.h", |
| 54 "appcache/ApplicationCache.cpp", | 56 "appcache/ApplicationCache.cpp", |
| 55 "appcache/ApplicationCache.h", | 57 "appcache/ApplicationCache.h", |
| 56 "appcache/ApplicationCacheHost.cpp", | 58 "appcache/ApplicationCacheHost.cpp", |
| 57 "appcache/ApplicationCacheHost.h", | 59 "appcache/ApplicationCacheHost.h", |
| 58 "modulescript/ModuleScriptFetchRequest.h", | 60 "modulescript/ModuleScriptFetchRequest.h", |
| 59 "modulescript/ModuleScriptLoaderClient.h", | 61 "modulescript/ModuleScriptLoaderClient.h", |
| (...skipping 29 matching lines...) Expand all Loading... |
| 89 "resource/TextResource.h", | 91 "resource/TextResource.h", |
| 90 "resource/XSLStyleSheetResource.cpp", | 92 "resource/XSLStyleSheetResource.cpp", |
| 91 "resource/XSLStyleSheetResource.h", | 93 "resource/XSLStyleSheetResource.h", |
| 92 ] | 94 ] |
| 93 | 95 |
| 94 configs += [ | 96 configs += [ |
| 95 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 97 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 96 "//build/config/compiler:no_size_t_to_int_warning", | 98 "//build/config/compiler:no_size_t_to_int_warning", |
| 97 ] | 99 ] |
| 98 } | 100 } |
| OLD | NEW |