| 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", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 "FormSubmission.cpp", | 21 "FormSubmission.cpp", |
| 22 "FormSubmission.h", | 22 "FormSubmission.h", |
| 23 "FrameFetchContext.cpp", | 23 "FrameFetchContext.cpp", |
| 24 "FrameFetchContext.h", | 24 "FrameFetchContext.h", |
| 25 "FrameLoadRequest.cpp", | 25 "FrameLoadRequest.cpp", |
| 26 "FrameLoadRequest.h", | 26 "FrameLoadRequest.h", |
| 27 "FrameLoader.cpp", | 27 "FrameLoader.cpp", |
| 28 "FrameLoader.h", | 28 "FrameLoader.h", |
| 29 "FrameLoaderStateMachine.cpp", | 29 "FrameLoaderStateMachine.cpp", |
| 30 "FrameLoaderStateMachine.h", | 30 "FrameLoaderStateMachine.h", |
| 31 "FrameLoaderTypes.h", |
| 31 "HistoryItem.cpp", | 32 "HistoryItem.cpp", |
| 32 "HistoryItem.h", | 33 "HistoryItem.h", |
| 33 "HttpEquiv.cpp", | 34 "HttpEquiv.cpp", |
| 34 "HttpEquiv.h", | 35 "HttpEquiv.h", |
| 35 "ImageLoader.cpp", | 36 "ImageLoader.cpp", |
| 36 "ImageLoader.h", | 37 "ImageLoader.h", |
| 37 "LinkLoader.cpp", | 38 "LinkLoader.cpp", |
| 38 "LinkLoader.h", | 39 "LinkLoader.h", |
| 39 "LinkLoaderClient.h", | 40 "LinkLoaderClient.h", |
| 40 "MixedContentChecker.cpp", | 41 "MixedContentChecker.cpp", |
| 41 "MixedContentChecker.h", | 42 "MixedContentChecker.h", |
| 42 "NavigationPolicy.cpp", | 43 "NavigationPolicy.cpp", |
| 43 "NavigationPolicy.h", | 44 "NavigationPolicy.h", |
| 44 "NavigationScheduler.cpp", | 45 "NavigationScheduler.cpp", |
| 45 "NavigationScheduler.h", | 46 "NavigationScheduler.h", |
| 47 "NetworkHintsInterface.h", |
| 46 "PingLoader.cpp", | 48 "PingLoader.cpp", |
| 47 "PingLoader.h", | 49 "PingLoader.h", |
| 48 "PrerendererClient.cpp", | 50 "PrerendererClient.cpp", |
| 49 "PrerendererClient.h", | 51 "PrerendererClient.h", |
| 50 "ProgressTracker.cpp", | 52 "ProgressTracker.cpp", |
| 51 "ProgressTracker.h", | 53 "ProgressTracker.h", |
| 52 "SubresourceFilter.cpp", | 54 "SubresourceFilter.cpp", |
| 53 "SubresourceFilter.h", | 55 "SubresourceFilter.h", |
| 54 "TextResourceDecoderBuilder.cpp", | 56 "TextResourceDecoderBuilder.cpp", |
| 55 "TextResourceDecoderBuilder.h", | 57 "TextResourceDecoderBuilder.h", |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 "resource/TextResource.h", | 107 "resource/TextResource.h", |
| 106 "resource/XSLStyleSheetResource.cpp", | 108 "resource/XSLStyleSheetResource.cpp", |
| 107 "resource/XSLStyleSheetResource.h", | 109 "resource/XSLStyleSheetResource.h", |
| 108 ] | 110 ] |
| 109 | 111 |
| 110 configs += [ | 112 configs += [ |
| 111 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 113 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 112 "//build/config/compiler:no_size_t_to_int_warning", | 114 "//build/config/compiler:no_size_t_to_int_warning", |
| 113 ] | 115 ] |
| 114 } | 116 } |
| OLD | NEW |