| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 "ThreadableLoadingContext.h", | 53 "ThreadableLoadingContext.h", |
| 54 "WorkerThreadableLoader.cpp", | 54 "WorkerThreadableLoader.cpp", |
| 55 "WorkerThreadableLoader.h", | 55 "WorkerThreadableLoader.h", |
| 56 "WorkletScriptLoader.cpp", | 56 "WorkletScriptLoader.cpp", |
| 57 "WorkletScriptLoader.h", | 57 "WorkletScriptLoader.h", |
| 58 "appcache/ApplicationCache.cpp", | 58 "appcache/ApplicationCache.cpp", |
| 59 "appcache/ApplicationCache.h", | 59 "appcache/ApplicationCache.h", |
| 60 "appcache/ApplicationCacheHost.cpp", | 60 "appcache/ApplicationCacheHost.cpp", |
| 61 "appcache/ApplicationCacheHost.h", | 61 "appcache/ApplicationCacheHost.h", |
| 62 "modulescript/ModuleScriptFetchRequest.h", | 62 "modulescript/ModuleScriptFetchRequest.h", |
| 63 "modulescript/ModuleScriptLoader.cpp", |
| 64 "modulescript/ModuleScriptLoader.h", |
| 63 "modulescript/ModuleScriptLoaderClient.h", | 65 "modulescript/ModuleScriptLoaderClient.h", |
| 66 "modulescript/ModuleScriptLoaderRegistry.cpp", |
| 67 "modulescript/ModuleScriptLoaderRegistry.h", |
| 64 "private/CrossOriginPreflightResultCache.cpp", | 68 "private/CrossOriginPreflightResultCache.cpp", |
| 65 "private/CrossOriginPreflightResultCache.h", | 69 "private/CrossOriginPreflightResultCache.h", |
| 66 "private/FrameClientHintsPreferencesContext.cpp", | 70 "private/FrameClientHintsPreferencesContext.cpp", |
| 67 "private/FrameClientHintsPreferencesContext.h", | 71 "private/FrameClientHintsPreferencesContext.h", |
| 68 "private/PrerenderHandle.cpp", | 72 "private/PrerenderHandle.cpp", |
| 69 "private/PrerenderHandle.h", | 73 "private/PrerenderHandle.h", |
| 70 "resource/CSSStyleSheetResource.cpp", | 74 "resource/CSSStyleSheetResource.cpp", |
| 71 "resource/CSSStyleSheetResource.h", | 75 "resource/CSSStyleSheetResource.h", |
| 72 "resource/DocumentResource.cpp", | 76 "resource/DocumentResource.cpp", |
| 73 "resource/DocumentResource.h", | 77 "resource/DocumentResource.h", |
| (...skipping 19 matching lines...) Expand all Loading... |
| 93 "resource/TextResource.h", | 97 "resource/TextResource.h", |
| 94 "resource/XSLStyleSheetResource.cpp", | 98 "resource/XSLStyleSheetResource.cpp", |
| 95 "resource/XSLStyleSheetResource.h", | 99 "resource/XSLStyleSheetResource.h", |
| 96 ] | 100 ] |
| 97 | 101 |
| 98 configs += [ | 102 configs += [ |
| 99 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 103 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 100 "//build/config/compiler:no_size_t_to_int_warning", | 104 "//build/config/compiler:no_size_t_to_int_warning", |
| 101 ] | 105 ] |
| 102 } | 106 } |
| OLD | NEW |