Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(80)

Side by Side Diff: third_party/WebKit/Source/core/loader/BUILD.gn

Issue 2697073002: [ES6 modules] Introduce ModuleScriptLoader (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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",
66 "modulescript/ModuleScriptLoaderClient.h", 68 "modulescript/ModuleScriptLoaderClient.h",
69 "modulescript/ModuleScriptLoaderRegistry.cpp",
70 "modulescript/ModuleScriptLoaderRegistry.h",
67 "resource/CSSStyleSheetResource.cpp", 71 "resource/CSSStyleSheetResource.cpp",
68 "resource/CSSStyleSheetResource.h", 72 "resource/CSSStyleSheetResource.h",
69 "resource/DocumentResource.cpp", 73 "resource/DocumentResource.cpp",
70 "resource/DocumentResource.h", 74 "resource/DocumentResource.h",
71 "resource/FontResource.cpp", 75 "resource/FontResource.cpp",
72 "resource/FontResource.h", 76 "resource/FontResource.h",
73 "resource/ImageResource.cpp", 77 "resource/ImageResource.cpp",
74 "resource/ImageResource.h", 78 "resource/ImageResource.h",
75 "resource/ImageResourceContent.cpp", 79 "resource/ImageResourceContent.cpp",
76 "resource/ImageResourceContent.h", 80 "resource/ImageResourceContent.h",
(...skipping 13 matching lines...) Expand all
90 "resource/TextResource.h", 94 "resource/TextResource.h",
91 "resource/XSLStyleSheetResource.cpp", 95 "resource/XSLStyleSheetResource.cpp",
92 "resource/XSLStyleSheetResource.h", 96 "resource/XSLStyleSheetResource.h",
93 ] 97 ]
94 98
95 configs += [ 99 configs += [
96 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 100 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
97 "//build/config/compiler:no_size_t_to_int_warning", 101 "//build/config/compiler:no_size_t_to_int_warning",
98 ] 102 ]
99 } 103 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698