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

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

Issue 2504883003: Loading: move *StyleSheetResource to core/loader/resource (Closed)
Patch Set: [rebase] Created 4 years 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 "TextTrackLoader.cpp", 51 "TextTrackLoader.cpp",
52 "TextTrackLoader.h", 52 "TextTrackLoader.h",
53 "ThreadableLoader.cpp", 53 "ThreadableLoader.cpp",
54 "ThreadableLoaderClient.h", 54 "ThreadableLoaderClient.h",
55 "WorkerThreadableLoader.cpp", 55 "WorkerThreadableLoader.cpp",
56 "WorkerThreadableLoader.h", 56 "WorkerThreadableLoader.h",
57 "appcache/ApplicationCache.cpp", 57 "appcache/ApplicationCache.cpp",
58 "appcache/ApplicationCache.h", 58 "appcache/ApplicationCache.h",
59 "appcache/ApplicationCacheHost.cpp", 59 "appcache/ApplicationCacheHost.cpp",
60 "appcache/ApplicationCacheHost.h", 60 "appcache/ApplicationCacheHost.h",
61 "resource/CSSStyleSheetResource.cpp",
62 "resource/CSSStyleSheetResource.h",
61 "resource/DocumentResource.cpp", 63 "resource/DocumentResource.cpp",
62 "resource/DocumentResource.h", 64 "resource/DocumentResource.h",
63 "resource/FontResource.cpp", 65 "resource/FontResource.cpp",
64 "resource/FontResource.h", 66 "resource/FontResource.h",
65 "resource/LinkFetchResource.cpp", 67 "resource/LinkFetchResource.cpp",
66 "resource/LinkFetchResource.h", 68 "resource/LinkFetchResource.h",
67 "resource/LinkPreloadResourceClients.cpp", 69 "resource/LinkPreloadResourceClients.cpp",
68 "resource/LinkPreloadResourceClients.h", 70 "resource/LinkPreloadResourceClients.h",
69 "resource/ScriptResource.cpp", 71 "resource/ScriptResource.cpp",
70 "resource/ScriptResource.h", 72 "resource/ScriptResource.h",
73 "resource/StyleSheetResource.h",
74 "resource/StyleSheetResourceClient.h",
71 "resource/XSLStyleSheetResource.cpp", 75 "resource/XSLStyleSheetResource.cpp",
72 "resource/XSLStyleSheetResource.h", 76 "resource/XSLStyleSheetResource.h",
73 ] 77 ]
74 78
75 configs += [ 79 configs += [
76 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 80 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
77 "//build/config/compiler:no_size_t_to_int_warning", 81 "//build/config/compiler:no_size_t_to_int_warning",
78 ] 82 ]
79 } 83 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698