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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 "ThreadableLoaderClient.h", | 56 "ThreadableLoaderClient.h", |
57 "WorkerThreadableLoader.cpp", | 57 "WorkerThreadableLoader.cpp", |
58 "WorkerThreadableLoader.h", | 58 "WorkerThreadableLoader.h", |
59 "WorkletScriptLoader.cpp", | 59 "WorkletScriptLoader.cpp", |
60 "WorkletScriptLoader.h", | 60 "WorkletScriptLoader.h", |
61 "appcache/ApplicationCache.cpp", | 61 "appcache/ApplicationCache.cpp", |
62 "appcache/ApplicationCache.h", | 62 "appcache/ApplicationCache.h", |
63 "appcache/ApplicationCacheHost.cpp", | 63 "appcache/ApplicationCacheHost.cpp", |
64 "appcache/ApplicationCacheHost.h", | 64 "appcache/ApplicationCacheHost.h", |
65 "modulescript/ModuleScriptFetchRequest.h", | 65 "modulescript/ModuleScriptFetchRequest.h", |
| 66 "modulescript/ModuleScriptLoader.cpp", |
| 67 "modulescript/ModuleScriptLoader.h", |
| 68 "modulescript/ModuleScriptLoaderClient.h", |
| 69 "modulescript/ModuleScriptLoaderRegistry.cpp", |
| 70 "modulescript/ModuleScriptLoaderRegistry.h", |
| 71 "modulescript/ModuleTreeLinker.cpp", |
| 72 "modulescript/ModuleTreeLinker.h", |
| 73 "modulescript/ModuleTreeLinkerRegistry.cpp", |
| 74 "modulescript/ModuleTreeLinkerRegistry.h", |
66 "resource/CSSStyleSheetResource.cpp", | 75 "resource/CSSStyleSheetResource.cpp", |
67 "resource/CSSStyleSheetResource.h", | 76 "resource/CSSStyleSheetResource.h", |
68 "resource/DocumentResource.cpp", | 77 "resource/DocumentResource.cpp", |
69 "resource/DocumentResource.h", | 78 "resource/DocumentResource.h", |
70 "resource/FontResource.cpp", | 79 "resource/FontResource.cpp", |
71 "resource/FontResource.h", | 80 "resource/FontResource.h", |
72 "resource/ImageResource.cpp", | 81 "resource/ImageResource.cpp", |
73 "resource/ImageResource.h", | 82 "resource/ImageResource.h", |
74 "resource/ImageResourceContent.cpp", | 83 "resource/ImageResourceContent.cpp", |
75 "resource/ImageResourceContent.h", | 84 "resource/ImageResourceContent.h", |
(...skipping 13 matching lines...) Expand all Loading... |
89 "resource/TextResource.h", | 98 "resource/TextResource.h", |
90 "resource/XSLStyleSheetResource.cpp", | 99 "resource/XSLStyleSheetResource.cpp", |
91 "resource/XSLStyleSheetResource.h", | 100 "resource/XSLStyleSheetResource.h", |
92 ] | 101 ] |
93 | 102 |
94 configs += [ | 103 configs += [ |
95 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 104 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
96 "//build/config/compiler:no_size_t_to_int_warning", | 105 "//build/config/compiler:no_size_t_to_int_warning", |
97 ] | 106 ] |
98 } | 107 } |
OLD | NEW |