| 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 "DocumentLoadTiming.cpp", | 11 "DocumentLoadTiming.cpp", |
| 11 "DocumentLoadTiming.h", | 12 "DocumentLoadTiming.h", |
| 12 "DocumentLoader.cpp", | 13 "DocumentLoader.cpp", |
| 13 "DocumentLoader.h", | 14 "DocumentLoader.h", |
| 14 "DocumentThreadableLoader.cpp", | 15 "DocumentThreadableLoader.cpp", |
| 15 "DocumentThreadableLoader.h", | 16 "DocumentThreadableLoader.h", |
| 16 "DocumentThreadableLoaderClient.h", | 17 "DocumentThreadableLoaderClient.h", |
| 17 "DocumentWriter.cpp", | 18 "DocumentWriter.cpp", |
| 18 "DocumentWriter.h", | 19 "DocumentWriter.h", |
| 19 "EmptyClients.cpp", | 20 "EmptyClients.cpp", |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 "PrerendererClient.h", | 52 "PrerendererClient.h", |
| 52 "ProgressTracker.cpp", | 53 "ProgressTracker.cpp", |
| 53 "ProgressTracker.h", | 54 "ProgressTracker.h", |
| 54 "SubresourceFilter.cpp", | 55 "SubresourceFilter.cpp", |
| 55 "SubresourceFilter.h", | 56 "SubresourceFilter.h", |
| 56 "TextResourceDecoderBuilder.cpp", | 57 "TextResourceDecoderBuilder.cpp", |
| 57 "TextResourceDecoderBuilder.h", | 58 "TextResourceDecoderBuilder.h", |
| 58 "TextTrackLoader.cpp", | 59 "TextTrackLoader.cpp", |
| 59 "TextTrackLoader.h", | 60 "TextTrackLoader.h", |
| 60 "ThreadableLoader.cpp", | 61 "ThreadableLoader.cpp", |
| 62 "ThreadableLoader.h", |
| 61 "ThreadableLoaderClient.h", | 63 "ThreadableLoaderClient.h", |
| 62 "ThreadableLoadingContext.cpp", | 64 "ThreadableLoadingContext.cpp", |
| 63 "ThreadableLoadingContext.h", | 65 "ThreadableLoadingContext.h", |
| 64 "WorkerThreadableLoader.cpp", | 66 "WorkerThreadableLoader.cpp", |
| 65 "WorkerThreadableLoader.h", | 67 "WorkerThreadableLoader.h", |
| 66 "WorkletScriptLoader.cpp", | 68 "WorkletScriptLoader.cpp", |
| 67 "WorkletScriptLoader.h", | 69 "WorkletScriptLoader.h", |
| 68 "appcache/ApplicationCache.cpp", | 70 "appcache/ApplicationCache.cpp", |
| 69 "appcache/ApplicationCache.h", | 71 "appcache/ApplicationCache.h", |
| 70 "appcache/ApplicationCacheHost.cpp", | 72 "appcache/ApplicationCacheHost.cpp", |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 "resource/TextResource.h", | 109 "resource/TextResource.h", |
| 108 "resource/XSLStyleSheetResource.cpp", | 110 "resource/XSLStyleSheetResource.cpp", |
| 109 "resource/XSLStyleSheetResource.h", | 111 "resource/XSLStyleSheetResource.h", |
| 110 ] | 112 ] |
| 111 | 113 |
| 112 configs += [ | 114 configs += [ |
| 113 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 115 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 114 "//build/config/compiler:no_size_t_to_int_warning", | 116 "//build/config/compiler:no_size_t_to_int_warning", |
| 115 ] | 117 ] |
| 116 } | 118 } |
| OLD | NEW |