| 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 "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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 "resource/StyleSheetResourceClient.h", | 76 "resource/StyleSheetResourceClient.h", |
| 75 "resource/XSLStyleSheetResource.cpp", | 77 "resource/XSLStyleSheetResource.cpp", |
| 76 "resource/XSLStyleSheetResource.h", | 78 "resource/XSLStyleSheetResource.h", |
| 77 ] | 79 ] |
| 78 | 80 |
| 79 configs += [ | 81 configs += [ |
| 80 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 82 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 81 "//build/config/compiler:no_size_t_to_int_warning", | 83 "//build/config/compiler:no_size_t_to_int_warning", |
| 82 ] | 84 ] |
| 83 } | 85 } |
| OLD | NEW |