| 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 "BaseFetchContext.cpp", | 9 "BaseFetchContext.cpp", |
| 10 "BaseFetchContext.h", | 10 "BaseFetchContext.h", |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 "WorkerThreadableLoader.cpp", | 72 "WorkerThreadableLoader.cpp", |
| 73 "WorkerThreadableLoader.h", | 73 "WorkerThreadableLoader.h", |
| 74 "WorkletScriptLoader.cpp", | 74 "WorkletScriptLoader.cpp", |
| 75 "WorkletScriptLoader.h", | 75 "WorkletScriptLoader.h", |
| 76 "appcache/ApplicationCache.cpp", | 76 "appcache/ApplicationCache.cpp", |
| 77 "appcache/ApplicationCache.h", | 77 "appcache/ApplicationCache.h", |
| 78 "appcache/ApplicationCacheHost.cpp", | 78 "appcache/ApplicationCacheHost.cpp", |
| 79 "appcache/ApplicationCacheHost.h", | 79 "appcache/ApplicationCacheHost.h", |
| 80 "modulescript/ModuleScriptCreationParams.h", | 80 "modulescript/ModuleScriptCreationParams.h", |
| 81 "modulescript/ModuleScriptFetchRequest.h", | 81 "modulescript/ModuleScriptFetchRequest.h", |
| 82 "modulescript/ModuleScriptFetcher.cpp", |
| 83 "modulescript/ModuleScriptFetcher.h", |
| 82 "modulescript/ModuleScriptLoader.cpp", | 84 "modulescript/ModuleScriptLoader.cpp", |
| 83 "modulescript/ModuleScriptLoader.h", | 85 "modulescript/ModuleScriptLoader.h", |
| 84 "modulescript/ModuleScriptLoaderClient.h", | 86 "modulescript/ModuleScriptLoaderClient.h", |
| 85 "modulescript/ModuleScriptLoaderRegistry.cpp", | 87 "modulescript/ModuleScriptLoaderRegistry.cpp", |
| 86 "modulescript/ModuleScriptLoaderRegistry.h", | 88 "modulescript/ModuleScriptLoaderRegistry.h", |
| 87 "modulescript/ModuleTreeLinker.cpp", | 89 "modulescript/ModuleTreeLinker.cpp", |
| 88 "modulescript/ModuleTreeLinker.h", | 90 "modulescript/ModuleTreeLinker.h", |
| 89 "modulescript/ModuleTreeLinkerRegistry.cpp", | 91 "modulescript/ModuleTreeLinkerRegistry.cpp", |
| 90 "modulescript/ModuleTreeLinkerRegistry.h", | 92 "modulescript/ModuleTreeLinkerRegistry.h", |
| 93 "modulescript/WorkletModuleScriptFetcher.cpp", |
| 94 "modulescript/WorkletModuleScriptFetcher.h", |
| 91 "private/CrossOriginPreflightResultCache.cpp", | 95 "private/CrossOriginPreflightResultCache.cpp", |
| 92 "private/CrossOriginPreflightResultCache.h", | 96 "private/CrossOriginPreflightResultCache.h", |
| 93 "private/FrameClientHintsPreferencesContext.cpp", | 97 "private/FrameClientHintsPreferencesContext.cpp", |
| 94 "private/FrameClientHintsPreferencesContext.h", | 98 "private/FrameClientHintsPreferencesContext.h", |
| 95 "private/PrerenderHandle.cpp", | 99 "private/PrerenderHandle.cpp", |
| 96 "private/PrerenderHandle.h", | 100 "private/PrerenderHandle.h", |
| 97 "resource/CSSStyleSheetResource.cpp", | 101 "resource/CSSStyleSheetResource.cpp", |
| 98 "resource/CSSStyleSheetResource.h", | 102 "resource/CSSStyleSheetResource.h", |
| 99 "resource/DocumentResource.cpp", | 103 "resource/DocumentResource.cpp", |
| 100 "resource/DocumentResource.h", | 104 "resource/DocumentResource.h", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 118 "resource/TextResource.h", | 122 "resource/TextResource.h", |
| 119 "resource/XSLStyleSheetResource.cpp", | 123 "resource/XSLStyleSheetResource.cpp", |
| 120 "resource/XSLStyleSheetResource.h", | 124 "resource/XSLStyleSheetResource.h", |
| 121 ] | 125 ] |
| 122 | 126 |
| 123 configs += [ | 127 configs += [ |
| 124 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 128 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 125 "//build/config/compiler:no_size_t_to_int_warning", | 129 "//build/config/compiler:no_size_t_to_int_warning", |
| 126 ] | 130 ] |
| 127 } | 131 } |
| OLD | NEW |