| 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 "resource/ImageResourceContent.cpp", | 114 "resource/ImageResourceContent.cpp", |
| 115 "resource/ImageResourceContent.h", | 115 "resource/ImageResourceContent.h", |
| 116 "resource/ImageResourceInfo.h", | 116 "resource/ImageResourceInfo.h", |
| 117 "resource/ImageResourceObserver.h", | 117 "resource/ImageResourceObserver.h", |
| 118 "resource/LinkFetchResource.cpp", | 118 "resource/LinkFetchResource.cpp", |
| 119 "resource/LinkFetchResource.h", | 119 "resource/LinkFetchResource.h", |
| 120 "resource/MultipartImageResourceParser.cpp", | 120 "resource/MultipartImageResourceParser.cpp", |
| 121 "resource/MultipartImageResourceParser.h", | 121 "resource/MultipartImageResourceParser.h", |
| 122 "resource/ScriptResource.cpp", | 122 "resource/ScriptResource.cpp", |
| 123 "resource/ScriptResource.h", | 123 "resource/ScriptResource.h", |
| 124 "resource/ScriptResourceData.cpp", |
| 125 "resource/ScriptResourceData.h", |
| 124 "resource/StyleSheetResource.h", | 126 "resource/StyleSheetResource.h", |
| 125 "resource/StyleSheetResourceClient.h", | 127 "resource/StyleSheetResourceClient.h", |
| 126 "resource/TextResource.cpp", | 128 "resource/TextResource.cpp", |
| 127 "resource/TextResource.h", | 129 "resource/TextResource.h", |
| 128 "resource/XSLStyleSheetResource.cpp", | 130 "resource/XSLStyleSheetResource.cpp", |
| 129 "resource/XSLStyleSheetResource.h", | 131 "resource/XSLStyleSheetResource.h", |
| 130 ] | 132 ] |
| 131 | 133 |
| 132 configs += [ | 134 configs += [ |
| 133 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 135 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 134 "//build/config/compiler:no_size_t_to_int_warning", | 136 "//build/config/compiler:no_size_t_to_int_warning", |
| 135 ] | 137 ] |
| 136 } | 138 } |
| OLD | NEW |