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

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

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

Powered by Google App Engine
This is Rietveld 408576698