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

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

Issue 2697073002: [ES6 modules] Introduce ModuleScriptLoader (Closed)
Patch Set: rebased Created 3 years, 9 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 "DocumentLoadTiming.cpp", 10 "DocumentLoadTiming.cpp",
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 "ThreadableLoaderClient.h", 49 "ThreadableLoaderClient.h",
50 "WorkerThreadableLoader.cpp", 50 "WorkerThreadableLoader.cpp",
51 "WorkerThreadableLoader.h", 51 "WorkerThreadableLoader.h",
52 "WorkletScriptLoader.cpp", 52 "WorkletScriptLoader.cpp",
53 "WorkletScriptLoader.h", 53 "WorkletScriptLoader.h",
54 "appcache/ApplicationCache.cpp", 54 "appcache/ApplicationCache.cpp",
55 "appcache/ApplicationCache.h", 55 "appcache/ApplicationCache.h",
56 "appcache/ApplicationCacheHost.cpp", 56 "appcache/ApplicationCacheHost.cpp",
57 "appcache/ApplicationCacheHost.h", 57 "appcache/ApplicationCacheHost.h",
58 "modulescript/ModuleScriptFetchRequest.h", 58 "modulescript/ModuleScriptFetchRequest.h",
59 "modulescript/ModuleScriptLoader.cpp",
60 "modulescript/ModuleScriptLoader.h",
59 "modulescript/ModuleScriptLoaderClient.h", 61 "modulescript/ModuleScriptLoaderClient.h",
62 "modulescript/ModuleScriptLoaderRegistry.cpp",
63 "modulescript/ModuleScriptLoaderRegistry.h",
60 "private/CrossOriginPreflightResultCache.cpp", 64 "private/CrossOriginPreflightResultCache.cpp",
61 "private/CrossOriginPreflightResultCache.h", 65 "private/CrossOriginPreflightResultCache.h",
62 "private/FrameClientHintsPreferencesContext.cpp", 66 "private/FrameClientHintsPreferencesContext.cpp",
63 "private/FrameClientHintsPreferencesContext.h", 67 "private/FrameClientHintsPreferencesContext.h",
64 "private/PrerenderHandle.cpp", 68 "private/PrerenderHandle.cpp",
65 "private/PrerenderHandle.h", 69 "private/PrerenderHandle.h",
66 "resource/CSSStyleSheetResource.cpp", 70 "resource/CSSStyleSheetResource.cpp",
67 "resource/CSSStyleSheetResource.h", 71 "resource/CSSStyleSheetResource.h",
68 "resource/DocumentResource.cpp", 72 "resource/DocumentResource.cpp",
69 "resource/DocumentResource.h", 73 "resource/DocumentResource.h",
(...skipping 19 matching lines...) Expand all
89 "resource/TextResource.h", 93 "resource/TextResource.h",
90 "resource/XSLStyleSheetResource.cpp", 94 "resource/XSLStyleSheetResource.cpp",
91 "resource/XSLStyleSheetResource.h", 95 "resource/XSLStyleSheetResource.h",
92 ] 96 ]
93 97
94 configs += [ 98 configs += [
95 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 99 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
96 "//build/config/compiler:no_size_t_to_int_warning", 100 "//build/config/compiler:no_size_t_to_int_warning",
97 ] 101 ]
98 } 102 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698