| 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 14 matching lines...) Expand all Loading... |
| 25 "FrameLoaderStateMachine.cpp", | 25 "FrameLoaderStateMachine.cpp", |
| 26 "HistoryItem.cpp", | 26 "HistoryItem.cpp", |
| 27 "HistoryItem.h", | 27 "HistoryItem.h", |
| 28 "HttpEquiv.cpp", | 28 "HttpEquiv.cpp", |
| 29 "HttpEquiv.h", | 29 "HttpEquiv.h", |
| 30 "ImageLoader.cpp", | 30 "ImageLoader.cpp", |
| 31 "ImageLoader.h", | 31 "ImageLoader.h", |
| 32 "LinkLoader.cpp", | 32 "LinkLoader.cpp", |
| 33 "LinkLoader.h", | 33 "LinkLoader.h", |
| 34 "LinkLoaderClient.h", | 34 "LinkLoaderClient.h", |
| 35 "LinkPreloadResourceClients.cpp", | |
| 36 "LinkPreloadResourceClients.h", | |
| 37 "MixedContentChecker.cpp", | 35 "MixedContentChecker.cpp", |
| 38 "MixedContentChecker.h", | 36 "MixedContentChecker.h", |
| 39 "NavigationPolicy.cpp", | 37 "NavigationPolicy.cpp", |
| 40 "NavigationPolicy.h", | 38 "NavigationPolicy.h", |
| 41 "NavigationScheduler.cpp", | 39 "NavigationScheduler.cpp", |
| 42 "PingLoader.cpp", | 40 "PingLoader.cpp", |
| 43 "PingLoader.h", | 41 "PingLoader.h", |
| 44 "PrerenderHandle.cpp", | 42 "PrerenderHandle.cpp", |
| 45 "PrerenderHandle.h", | 43 "PrerenderHandle.h", |
| 46 "PrerendererClient.cpp", | 44 "PrerendererClient.cpp", |
| 47 "PrerendererClient.h", | 45 "PrerendererClient.h", |
| 48 "ProgressTracker.cpp", | 46 "ProgressTracker.cpp", |
| 49 "SinkDocument.cpp", | 47 "SinkDocument.cpp", |
| 50 "SinkDocument.h", | 48 "SinkDocument.h", |
| 51 "TextResourceDecoderBuilder.cpp", | 49 "TextResourceDecoderBuilder.cpp", |
| 52 "TextResourceDecoderBuilder.h", | 50 "TextResourceDecoderBuilder.h", |
| 53 "TextTrackLoader.cpp", | 51 "TextTrackLoader.cpp", |
| 54 "TextTrackLoader.h", | 52 "TextTrackLoader.h", |
| 55 "ThreadableLoader.cpp", | 53 "ThreadableLoader.cpp", |
| 56 "ThreadableLoaderClient.h", | 54 "ThreadableLoaderClient.h", |
| 57 "WorkerThreadableLoader.cpp", | 55 "WorkerThreadableLoader.cpp", |
| 58 "WorkerThreadableLoader.h", | 56 "WorkerThreadableLoader.h", |
| 59 "appcache/ApplicationCache.cpp", | 57 "appcache/ApplicationCache.cpp", |
| 60 "appcache/ApplicationCache.h", | 58 "appcache/ApplicationCache.h", |
| 61 "appcache/ApplicationCacheHost.cpp", | 59 "appcache/ApplicationCacheHost.cpp", |
| 62 "appcache/ApplicationCacheHost.h", | 60 "appcache/ApplicationCacheHost.h", |
| 61 "resource/DocumentResource.cpp", |
| 62 "resource/DocumentResource.h", |
| 63 "resource/LinkFetchResource.cpp", |
| 64 "resource/LinkFetchResource.h", |
| 65 "resource/LinkPreloadResourceClients.cpp", |
| 66 "resource/LinkPreloadResourceClients.h", |
| 67 "resource/ScriptResource.cpp", |
| 68 "resource/ScriptResource.h", |
| 69 "resource/XSLStyleSheetResource.cpp", |
| 70 "resource/XSLStyleSheetResource.h", |
| 63 ] | 71 ] |
| 64 | 72 |
| 65 configs += [ | 73 configs += [ |
| 66 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 74 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 67 "//build/config/compiler:no_size_t_to_int_warning", | 75 "//build/config/compiler:no_size_t_to_int_warning", |
| 68 ] | 76 ] |
| 69 } | 77 } |
| OLD | NEW |