OLD | NEW |
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 "DocumentLoadTiming.cpp", | 10 "DocumentLoadTiming.cpp", |
| 11 "DocumentLoadTiming.h", |
11 "DocumentLoader.cpp", | 12 "DocumentLoader.cpp", |
| 13 "DocumentLoader.h", |
12 "DocumentThreadableLoader.cpp", | 14 "DocumentThreadableLoader.cpp", |
13 "DocumentThreadableLoader.h", | 15 "DocumentThreadableLoader.h", |
14 "DocumentThreadableLoaderClient.h", | 16 "DocumentThreadableLoaderClient.h", |
15 "DocumentWriter.cpp", | 17 "DocumentWriter.cpp", |
| 18 "DocumentWriter.h", |
16 "EmptyClients.cpp", | 19 "EmptyClients.cpp", |
17 "EmptyClients.h", | 20 "EmptyClients.h", |
18 "FormSubmission.cpp", | 21 "FormSubmission.cpp", |
| 22 "FormSubmission.h", |
19 "FrameFetchContext.cpp", | 23 "FrameFetchContext.cpp", |
20 "FrameFetchContext.h", | 24 "FrameFetchContext.h", |
21 "FrameLoadRequest.cpp", | 25 "FrameLoadRequest.cpp", |
22 "FrameLoadRequest.h", | 26 "FrameLoadRequest.h", |
23 "FrameLoader.cpp", | 27 "FrameLoader.cpp", |
| 28 "FrameLoader.h", |
24 "FrameLoaderStateMachine.cpp", | 29 "FrameLoaderStateMachine.cpp", |
| 30 "FrameLoaderStateMachine.h", |
25 "HistoryItem.cpp", | 31 "HistoryItem.cpp", |
26 "HistoryItem.h", | 32 "HistoryItem.h", |
27 "HttpEquiv.cpp", | 33 "HttpEquiv.cpp", |
28 "HttpEquiv.h", | 34 "HttpEquiv.h", |
29 "ImageLoader.cpp", | 35 "ImageLoader.cpp", |
30 "ImageLoader.h", | 36 "ImageLoader.h", |
31 "LinkLoader.cpp", | 37 "LinkLoader.cpp", |
32 "LinkLoader.h", | 38 "LinkLoader.h", |
33 "LinkLoaderClient.h", | 39 "LinkLoaderClient.h", |
34 "MixedContentChecker.cpp", | 40 "MixedContentChecker.cpp", |
35 "MixedContentChecker.h", | 41 "MixedContentChecker.h", |
36 "NavigationPolicy.cpp", | 42 "NavigationPolicy.cpp", |
37 "NavigationPolicy.h", | 43 "NavigationPolicy.h", |
38 "NavigationScheduler.cpp", | 44 "NavigationScheduler.cpp", |
| 45 "NavigationScheduler.h", |
39 "PingLoader.cpp", | 46 "PingLoader.cpp", |
40 "PingLoader.h", | 47 "PingLoader.h", |
41 "PrerendererClient.cpp", | 48 "PrerendererClient.cpp", |
42 "PrerendererClient.h", | 49 "PrerendererClient.h", |
43 "ProgressTracker.cpp", | 50 "ProgressTracker.cpp", |
| 51 "ProgressTracker.h", |
44 "SubresourceFilter.cpp", | 52 "SubresourceFilter.cpp", |
45 "SubresourceFilter.h", | 53 "SubresourceFilter.h", |
46 "TextResourceDecoderBuilder.cpp", | 54 "TextResourceDecoderBuilder.cpp", |
47 "TextResourceDecoderBuilder.h", | 55 "TextResourceDecoderBuilder.h", |
48 "TextTrackLoader.cpp", | 56 "TextTrackLoader.cpp", |
49 "TextTrackLoader.h", | 57 "TextTrackLoader.h", |
50 "ThreadableLoader.cpp", | 58 "ThreadableLoader.cpp", |
51 "ThreadableLoaderClient.h", | 59 "ThreadableLoaderClient.h", |
52 "ThreadableLoadingContext.cpp", | 60 "ThreadableLoadingContext.cpp", |
53 "ThreadableLoadingContext.h", | 61 "ThreadableLoadingContext.h", |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 "resource/TextResource.h", | 105 "resource/TextResource.h", |
98 "resource/XSLStyleSheetResource.cpp", | 106 "resource/XSLStyleSheetResource.cpp", |
99 "resource/XSLStyleSheetResource.h", | 107 "resource/XSLStyleSheetResource.h", |
100 ] | 108 ] |
101 | 109 |
102 configs += [ | 110 configs += [ |
103 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 111 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
104 "//build/config/compiler:no_size_t_to_int_warning", | 112 "//build/config/compiler:no_size_t_to_int_warning", |
105 ] | 113 ] |
106 } | 114 } |
OLD | NEW |