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

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

Issue 2660663002: [ES6 Modules] Introduce ModuleScriptFetchRequest (Closed)
Patch Set: upstream 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 "TextTrackLoader.cpp", 53 "TextTrackLoader.cpp",
54 "TextTrackLoader.h", 54 "TextTrackLoader.h",
55 "ThreadableLoader.cpp", 55 "ThreadableLoader.cpp",
56 "ThreadableLoaderClient.h", 56 "ThreadableLoaderClient.h",
57 "WorkerThreadableLoader.cpp", 57 "WorkerThreadableLoader.cpp",
58 "WorkerThreadableLoader.h", 58 "WorkerThreadableLoader.h",
59 "appcache/ApplicationCache.cpp", 59 "appcache/ApplicationCache.cpp",
60 "appcache/ApplicationCache.h", 60 "appcache/ApplicationCache.h",
61 "appcache/ApplicationCacheHost.cpp", 61 "appcache/ApplicationCacheHost.cpp",
62 "appcache/ApplicationCacheHost.h", 62 "appcache/ApplicationCacheHost.h",
63 "modulescript/ModuleScriptFetchRequest.h",
63 "resource/CSSStyleSheetResource.cpp", 64 "resource/CSSStyleSheetResource.cpp",
64 "resource/CSSStyleSheetResource.h", 65 "resource/CSSStyleSheetResource.h",
65 "resource/DocumentResource.cpp", 66 "resource/DocumentResource.cpp",
66 "resource/DocumentResource.h", 67 "resource/DocumentResource.h",
67 "resource/FontResource.cpp", 68 "resource/FontResource.cpp",
68 "resource/FontResource.h", 69 "resource/FontResource.h",
69 "resource/ImageResource.cpp", 70 "resource/ImageResource.cpp",
70 "resource/ImageResource.h", 71 "resource/ImageResource.h",
71 "resource/ImageResourceContent.cpp", 72 "resource/ImageResourceContent.cpp",
72 "resource/ImageResourceContent.h", 73 "resource/ImageResourceContent.h",
(...skipping 13 matching lines...) Expand all
86 "resource/TextResource.h", 87 "resource/TextResource.h",
87 "resource/XSLStyleSheetResource.cpp", 88 "resource/XSLStyleSheetResource.cpp",
88 "resource/XSLStyleSheetResource.h", 89 "resource/XSLStyleSheetResource.h",
89 ] 90 ]
90 91
91 configs += [ 92 configs += [
92 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 93 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
93 "//build/config/compiler:no_size_t_to_int_warning", 94 "//build/config/compiler:no_size_t_to_int_warning",
94 ] 95 ]
95 } 96 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698