| 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 13 matching lines...) Expand all Loading... |
| 24 "FrameLoaderStateMachine.cpp", | 24 "FrameLoaderStateMachine.cpp", |
| 25 "HistoryItem.cpp", | 25 "HistoryItem.cpp", |
| 26 "HistoryItem.h", | 26 "HistoryItem.h", |
| 27 "HttpEquiv.cpp", | 27 "HttpEquiv.cpp", |
| 28 "HttpEquiv.h", | 28 "HttpEquiv.h", |
| 29 "ImageLoader.cpp", | 29 "ImageLoader.cpp", |
| 30 "ImageLoader.h", | 30 "ImageLoader.h", |
| 31 "LinkLoader.cpp", | 31 "LinkLoader.cpp", |
| 32 "LinkLoader.h", | 32 "LinkLoader.h", |
| 33 "LinkLoaderClient.h", | 33 "LinkLoaderClient.h", |
| 34 "LoadingContext.cpp", |
| 35 "LoadingContext.h", |
| 34 "MixedContentChecker.cpp", | 36 "MixedContentChecker.cpp", |
| 35 "MixedContentChecker.h", | 37 "MixedContentChecker.h", |
| 36 "NavigationPolicy.cpp", | 38 "NavigationPolicy.cpp", |
| 37 "NavigationPolicy.h", | 39 "NavigationPolicy.h", |
| 38 "NavigationScheduler.cpp", | 40 "NavigationScheduler.cpp", |
| 39 "PingLoader.cpp", | 41 "PingLoader.cpp", |
| 40 "PingLoader.h", | 42 "PingLoader.h", |
| 41 "PrerendererClient.cpp", | 43 "PrerendererClient.cpp", |
| 42 "PrerendererClient.h", | 44 "PrerendererClient.h", |
| 43 "ProgressTracker.cpp", | 45 "ProgressTracker.cpp", |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 "resource/TextResource.h", | 91 "resource/TextResource.h", |
| 90 "resource/XSLStyleSheetResource.cpp", | 92 "resource/XSLStyleSheetResource.cpp", |
| 91 "resource/XSLStyleSheetResource.h", | 93 "resource/XSLStyleSheetResource.h", |
| 92 ] | 94 ] |
| 93 | 95 |
| 94 configs += [ | 96 configs += [ |
| 95 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 97 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 96 "//build/config/compiler:no_size_t_to_int_warning", | 98 "//build/config/compiler:no_size_t_to_int_warning", |
| 97 ] | 99 ] |
| 98 } | 100 } |
| OLD | NEW |