| 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 |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 "HTMLIFrameElementPermissions.h", | 87 "HTMLIFrameElementPermissions.h", |
| 88 "HTMLIFrameElementSandbox.cpp", | 88 "HTMLIFrameElementSandbox.cpp", |
| 89 "HTMLIFrameElementSandbox.h", | 89 "HTMLIFrameElementSandbox.h", |
| 90 "HTMLImageElement.cpp", | 90 "HTMLImageElement.cpp", |
| 91 "HTMLImageElement.h", | 91 "HTMLImageElement.h", |
| 92 "HTMLImageFallbackHelper.cpp", | 92 "HTMLImageFallbackHelper.cpp", |
| 93 "HTMLImageFallbackHelper.h", | 93 "HTMLImageFallbackHelper.h", |
| 94 "HTMLImageLoader.cpp", | 94 "HTMLImageLoader.cpp", |
| 95 "HTMLImageLoader.h", | 95 "HTMLImageLoader.h", |
| 96 "HTMLInputElement.cpp", | 96 "HTMLInputElement.cpp", |
| 97 "HTMLKeygenElement.cpp", | |
| 98 "HTMLKeygenElement.h", | |
| 99 "HTMLLIElement.cpp", | 97 "HTMLLIElement.cpp", |
| 100 "HTMLLIElement.h", | 98 "HTMLLIElement.h", |
| 101 "HTMLLabelElement.cpp", | 99 "HTMLLabelElement.cpp", |
| 102 "HTMLLabelElement.h", | 100 "HTMLLabelElement.h", |
| 103 "HTMLLegendElement.cpp", | 101 "HTMLLegendElement.cpp", |
| 104 "HTMLLegendElement.h", | 102 "HTMLLegendElement.h", |
| 105 "HTMLLinkElement.cpp", | 103 "HTMLLinkElement.cpp", |
| 106 "HTMLLinkElement.h", | 104 "HTMLLinkElement.h", |
| 107 "HTMLMapElement.cpp", | 105 "HTMLMapElement.cpp", |
| 108 "HTMLMapElement.h", | 106 "HTMLMapElement.h", |
| (...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 511 "track/vtt/VTTToken.h", | 509 "track/vtt/VTTToken.h", |
| 512 "track/vtt/VTTTokenizer.cpp", | 510 "track/vtt/VTTTokenizer.cpp", |
| 513 "track/vtt/VTTTokenizer.h", | 511 "track/vtt/VTTTokenizer.h", |
| 514 ] | 512 ] |
| 515 | 513 |
| 516 configs += [ | 514 configs += [ |
| 517 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 515 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 518 "//build/config/compiler:no_size_t_to_int_warning", | 516 "//build/config/compiler:no_size_t_to_int_warning", |
| 519 ] | 517 ] |
| 520 } | 518 } |
| OLD | NEW |