| 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("//build/split_static_library.gni") | 5 import("//build/split_static_library.gni") |
| 6 import("//third_party/WebKit/Source/core/core.gni") | 6 import("//third_party/WebKit/Source/core/core.gni") |
| 7 | 7 |
| 8 blink_core_sources("html") { | 8 blink_core_sources("html") { |
| 9 split_count = 5 | 9 split_count = 5 |
| 10 | 10 |
| 11 sources = [ | 11 sources = [ |
| 12 "AutoplayUmaHelper.cpp", | 12 "AutoplayUmaHelper.cpp", |
| 13 "AutoplayUmaHelper.h", | 13 "AutoplayUmaHelper.h", |
| 14 "ClassList.cpp", | 14 "ClassList.cpp", |
| 15 "ClassList.h", | 15 "ClassList.h", |
| 16 "CrossOriginAttribute.cpp", | 16 "CrossOriginAttribute.cpp", |
| 17 "CrossOriginAttribute.h", | 17 "CrossOriginAttribute.h", |
| 18 "DocumentNameCollection.cpp", | 18 "DocumentNameCollection.cpp", |
| 19 "DocumentNameCollection.h", | 19 "DocumentNameCollection.h", |
| 20 "FormAssociatedElement.cpp", | |
| 21 "FormData.cpp", | 20 "FormData.cpp", |
| 22 "FormData.h", | 21 "FormData.h", |
| 23 "HTMLAllCollection.cpp", | 22 "HTMLAllCollection.cpp", |
| 24 "HTMLAllCollection.h", | 23 "HTMLAllCollection.h", |
| 25 "HTMLAnchorElement.cpp", | 24 "HTMLAnchorElement.cpp", |
| 26 "HTMLAnchorElement.h", | 25 "HTMLAnchorElement.h", |
| 27 "HTMLAreaElement.cpp", | 26 "HTMLAreaElement.cpp", |
| 28 "HTMLAreaElement.h", | 27 "HTMLAreaElement.h", |
| 29 "HTMLAudioElement.cpp", | 28 "HTMLAudioElement.cpp", |
| 30 "HTMLAudioElement.h", | 29 "HTMLAudioElement.h", |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 "LabelsNodeList.cpp", | 212 "LabelsNodeList.cpp", |
| 214 "LabelsNodeList.h", | 213 "LabelsNodeList.h", |
| 215 "LinkManifest.cpp", | 214 "LinkManifest.cpp", |
| 216 "LinkManifest.h", | 215 "LinkManifest.h", |
| 217 "LinkRelAttribute.cpp", | 216 "LinkRelAttribute.cpp", |
| 218 "LinkRelAttribute.h", | 217 "LinkRelAttribute.h", |
| 219 "LinkResource.cpp", | 218 "LinkResource.cpp", |
| 220 "LinkResource.h", | 219 "LinkResource.h", |
| 221 "LinkStyle.cpp", | 220 "LinkStyle.cpp", |
| 222 "LinkStyle.h", | 221 "LinkStyle.h", |
| 222 "ListedElement.cpp", |
| 223 "ListedElement.h", |
| 223 "MediaDocument.cpp", | 224 "MediaDocument.cpp", |
| 224 "MediaDocument.h", | 225 "MediaDocument.h", |
| 225 "MediaError.h", | 226 "MediaError.h", |
| 226 "MediaFragmentURIParser.cpp", | 227 "MediaFragmentURIParser.cpp", |
| 227 "MediaFragmentURIParser.h", | 228 "MediaFragmentURIParser.h", |
| 228 "PluginDocument.cpp", | 229 "PluginDocument.cpp", |
| 229 "PluginDocument.h", | 230 "PluginDocument.h", |
| 230 "PublicURLManager.cpp", | 231 "PublicURLManager.cpp", |
| 231 "PublicURLManager.h", | 232 "PublicURLManager.h", |
| 232 "RadioNodeList.cpp", | 233 "RadioNodeList.cpp", |
| (...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 507 "track/vtt/VTTToken.h", | 508 "track/vtt/VTTToken.h", |
| 508 "track/vtt/VTTTokenizer.cpp", | 509 "track/vtt/VTTTokenizer.cpp", |
| 509 "track/vtt/VTTTokenizer.h", | 510 "track/vtt/VTTTokenizer.h", |
| 510 ] | 511 ] |
| 511 | 512 |
| 512 configs += [ | 513 configs += [ |
| 513 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 514 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 514 "//build/config/compiler:no_size_t_to_int_warning", | 515 "//build/config/compiler:no_size_t_to_int_warning", |
| 515 ] | 516 ] |
| 516 } | 517 } |
| OLD | NEW |