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

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

Issue 2501543002: Loading: move FontResource to core/loader/resource (Closed)
Patch Set: one rebase error for webkit_unit_tests build 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
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/DocumentResource.cpp", 61 "resource/DocumentResource.cpp",
62 "resource/DocumentResource.h", 62 "resource/DocumentResource.h",
63 "resource/FontResource.cpp",
64 "resource/FontResource.h",
63 "resource/LinkFetchResource.cpp", 65 "resource/LinkFetchResource.cpp",
64 "resource/LinkFetchResource.h", 66 "resource/LinkFetchResource.h",
65 "resource/LinkPreloadResourceClients.cpp", 67 "resource/LinkPreloadResourceClients.cpp",
66 "resource/LinkPreloadResourceClients.h", 68 "resource/LinkPreloadResourceClients.h",
67 "resource/ScriptResource.cpp", 69 "resource/ScriptResource.cpp",
68 "resource/ScriptResource.h", 70 "resource/ScriptResource.h",
69 "resource/XSLStyleSheetResource.cpp", 71 "resource/XSLStyleSheetResource.cpp",
70 "resource/XSLStyleSheetResource.h", 72 "resource/XSLStyleSheetResource.h",
71 ] 73 ]
72 74
73 configs += [ 75 configs += [
74 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 76 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
75 "//build/config/compiler:no_size_t_to_int_warning", 77 "//build/config/compiler:no_size_t_to_int_warning",
76 ] 78 ]
77 } 79 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698