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

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

Issue 2544933003: Split methods for ClientHintsPreferences from FrameFetchContext (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",
11 "DocumentLoadTiming.cpp", 11 "DocumentLoadTiming.cpp",
12 "DocumentLoader.cpp", 12 "DocumentLoader.cpp",
13 "DocumentThreadableLoader.cpp", 13 "DocumentThreadableLoader.cpp",
14 "DocumentThreadableLoader.h", 14 "DocumentThreadableLoader.h",
15 "DocumentThreadableLoaderClient.h", 15 "DocumentThreadableLoaderClient.h",
16 "DocumentWriter.cpp", 16 "DocumentWriter.cpp",
17 "EmptyClients.cpp", 17 "EmptyClients.cpp",
18 "EmptyClients.h", 18 "EmptyClients.h",
19 "FormSubmission.cpp", 19 "FormSubmission.cpp",
20 "FrameClientHintsPreferencesContext.cpp",
21 "FrameClientHintsPreferencesContext.h",
20 "FrameFetchContext.cpp", 22 "FrameFetchContext.cpp",
21 "FrameFetchContext.h", 23 "FrameFetchContext.h",
22 "FrameLoadRequest.cpp", 24 "FrameLoadRequest.cpp",
23 "FrameLoadRequest.h", 25 "FrameLoadRequest.h",
24 "FrameLoader.cpp", 26 "FrameLoader.cpp",
25 "FrameLoaderStateMachine.cpp", 27 "FrameLoaderStateMachine.cpp",
26 "HistoryItem.cpp", 28 "HistoryItem.cpp",
27 "HistoryItem.h", 29 "HistoryItem.h",
28 "HttpEquiv.cpp", 30 "HttpEquiv.cpp",
29 "HttpEquiv.h", 31 "HttpEquiv.h",
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 "resource/TextResource.h", 78 "resource/TextResource.h",
77 "resource/XSLStyleSheetResource.cpp", 79 "resource/XSLStyleSheetResource.cpp",
78 "resource/XSLStyleSheetResource.h", 80 "resource/XSLStyleSheetResource.h",
79 ] 81 ]
80 82
81 configs += [ 83 configs += [
82 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 84 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
83 "//build/config/compiler:no_size_t_to_int_warning", 85 "//build/config/compiler:no_size_t_to_int_warning",
84 ] 86 ]
85 } 87 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698