| 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", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 "resource/FontResource.cpp", | 65 "resource/FontResource.cpp", |
| 66 "resource/FontResource.h", | 66 "resource/FontResource.h", |
| 67 "resource/LinkFetchResource.cpp", | 67 "resource/LinkFetchResource.cpp", |
| 68 "resource/LinkFetchResource.h", | 68 "resource/LinkFetchResource.h", |
| 69 "resource/LinkPreloadResourceClients.cpp", | 69 "resource/LinkPreloadResourceClients.cpp", |
| 70 "resource/LinkPreloadResourceClients.h", | 70 "resource/LinkPreloadResourceClients.h", |
| 71 "resource/ScriptResource.cpp", | 71 "resource/ScriptResource.cpp", |
| 72 "resource/ScriptResource.h", | 72 "resource/ScriptResource.h", |
| 73 "resource/StyleSheetResource.h", | 73 "resource/StyleSheetResource.h", |
| 74 "resource/StyleSheetResourceClient.h", | 74 "resource/StyleSheetResourceClient.h", |
| 75 "resource/TextResource.cpp", |
| 76 "resource/TextResource.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 |