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

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

Issue 2823803003: [ES6 modules] Introduce ModuleTreeLinker (Closed)
Patch Set: yhirano2 Created 3 years, 8 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 "BaseFetchContext.cpp", 9 "BaseFetchContext.cpp",
10 "BaseFetchContext.h", 10 "BaseFetchContext.h",
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 "appcache/ApplicationCache.cpp", 72 "appcache/ApplicationCache.cpp",
73 "appcache/ApplicationCache.h", 73 "appcache/ApplicationCache.h",
74 "appcache/ApplicationCacheHost.cpp", 74 "appcache/ApplicationCacheHost.cpp",
75 "appcache/ApplicationCacheHost.h", 75 "appcache/ApplicationCacheHost.h",
76 "modulescript/ModuleScriptFetchRequest.h", 76 "modulescript/ModuleScriptFetchRequest.h",
77 "modulescript/ModuleScriptLoader.cpp", 77 "modulescript/ModuleScriptLoader.cpp",
78 "modulescript/ModuleScriptLoader.h", 78 "modulescript/ModuleScriptLoader.h",
79 "modulescript/ModuleScriptLoaderClient.h", 79 "modulescript/ModuleScriptLoaderClient.h",
80 "modulescript/ModuleScriptLoaderRegistry.cpp", 80 "modulescript/ModuleScriptLoaderRegistry.cpp",
81 "modulescript/ModuleScriptLoaderRegistry.h", 81 "modulescript/ModuleScriptLoaderRegistry.h",
82 "modulescript/ModuleTreeLinker.cpp",
83 "modulescript/ModuleTreeLinker.h",
84 "modulescript/ModuleTreeLinkerRegistry.cpp",
85 "modulescript/ModuleTreeLinkerRegistry.h",
82 "private/CrossOriginPreflightResultCache.cpp", 86 "private/CrossOriginPreflightResultCache.cpp",
83 "private/CrossOriginPreflightResultCache.h", 87 "private/CrossOriginPreflightResultCache.h",
84 "private/FrameClientHintsPreferencesContext.cpp", 88 "private/FrameClientHintsPreferencesContext.cpp",
85 "private/FrameClientHintsPreferencesContext.h", 89 "private/FrameClientHintsPreferencesContext.h",
86 "private/PrerenderHandle.cpp", 90 "private/PrerenderHandle.cpp",
87 "private/PrerenderHandle.h", 91 "private/PrerenderHandle.h",
88 "resource/CSSStyleSheetResource.cpp", 92 "resource/CSSStyleSheetResource.cpp",
89 "resource/CSSStyleSheetResource.h", 93 "resource/CSSStyleSheetResource.h",
90 "resource/DocumentResource.cpp", 94 "resource/DocumentResource.cpp",
91 "resource/DocumentResource.h", 95 "resource/DocumentResource.h",
(...skipping 19 matching lines...) Expand all
111 "resource/TextResource.h", 115 "resource/TextResource.h",
112 "resource/XSLStyleSheetResource.cpp", 116 "resource/XSLStyleSheetResource.cpp",
113 "resource/XSLStyleSheetResource.h", 117 "resource/XSLStyleSheetResource.h",
114 ] 118 ]
115 119
116 configs += [ 120 configs += [
117 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 121 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
118 "//build/config/compiler:no_size_t_to_int_warning", 122 "//build/config/compiler:no_size_t_to_int_warning",
119 ] 123 ]
120 } 124 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698