| 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 "BaseFetchContext.cpp", | 9 "BaseFetchContext.cpp", |
| 10 "BaseFetchContext.h", | 10 "BaseFetchContext.h", |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 "LinkLoader.cpp", | 41 "LinkLoader.cpp", |
| 42 "LinkLoader.h", | 42 "LinkLoader.h", |
| 43 "LinkLoaderClient.h", | 43 "LinkLoaderClient.h", |
| 44 "MixedContentChecker.cpp", | 44 "MixedContentChecker.cpp", |
| 45 "MixedContentChecker.h", | 45 "MixedContentChecker.h", |
| 46 "NavigationPolicy.cpp", | 46 "NavigationPolicy.cpp", |
| 47 "NavigationPolicy.h", | 47 "NavigationPolicy.h", |
| 48 "NavigationScheduler.cpp", | 48 "NavigationScheduler.cpp", |
| 49 "NavigationScheduler.h", | 49 "NavigationScheduler.h", |
| 50 "NetworkHintsInterface.h", | 50 "NetworkHintsInterface.h", |
| 51 "NetworkQuietDetector.cpp", |
| 52 "NetworkQuietDetector.h", |
| 51 "PingLoader.cpp", | 53 "PingLoader.cpp", |
| 52 "PingLoader.h", | 54 "PingLoader.h", |
| 53 "PrerendererClient.cpp", | 55 "PrerendererClient.cpp", |
| 54 "PrerendererClient.h", | 56 "PrerendererClient.h", |
| 55 "ProgressTracker.cpp", | 57 "ProgressTracker.cpp", |
| 56 "ProgressTracker.h", | 58 "ProgressTracker.h", |
| 57 "SubresourceFilter.cpp", | 59 "SubresourceFilter.cpp", |
| 58 "SubresourceFilter.h", | 60 "SubresourceFilter.h", |
| 59 "TextResourceDecoderBuilder.cpp", | 61 "TextResourceDecoderBuilder.cpp", |
| 60 "TextResourceDecoderBuilder.h", | 62 "TextResourceDecoderBuilder.h", |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 "resource/TextResource.h", | 119 "resource/TextResource.h", |
| 118 "resource/XSLStyleSheetResource.cpp", | 120 "resource/XSLStyleSheetResource.cpp", |
| 119 "resource/XSLStyleSheetResource.h", | 121 "resource/XSLStyleSheetResource.h", |
| 120 ] | 122 ] |
| 121 | 123 |
| 122 configs += [ | 124 configs += [ |
| 123 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 125 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 124 "//build/config/compiler:no_size_t_to_int_warning", | 126 "//build/config/compiler:no_size_t_to_int_warning", |
| 125 ] | 127 ] |
| 126 } | 128 } |
| OLD | NEW |