| 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 "HTMLLinkElement.cpp", | 113 "HTMLLinkElement.cpp", |
| 114 "HTMLLinkElement.h", | 114 "HTMLLinkElement.h", |
| 115 "HTMLMapElement.cpp", | 115 "HTMLMapElement.cpp", |
| 116 "HTMLMapElement.h", | 116 "HTMLMapElement.h", |
| 117 "HTMLMarqueeElement.cpp", | 117 "HTMLMarqueeElement.cpp", |
| 118 "HTMLMarqueeElement.h", | 118 "HTMLMarqueeElement.h", |
| 119 "HTMLMediaElement.cpp", | 119 "HTMLMediaElement.cpp", |
| 120 "HTMLMediaElement.h", | 120 "HTMLMediaElement.h", |
| 121 "HTMLMenuElement.cpp", | 121 "HTMLMenuElement.cpp", |
| 122 "HTMLMenuElement.h", | 122 "HTMLMenuElement.h", |
| 123 "HTMLMenuItemElement.cpp", | |
| 124 "HTMLMenuItemElement.h", | |
| 125 "HTMLMetaElement.cpp", | 123 "HTMLMetaElement.cpp", |
| 126 "HTMLMetaElement.h", | 124 "HTMLMetaElement.h", |
| 127 "HTMLMeterElement.cpp", | 125 "HTMLMeterElement.cpp", |
| 128 "HTMLMeterElement.h", | 126 "HTMLMeterElement.h", |
| 129 "HTMLModElement.cpp", | 127 "HTMLModElement.cpp", |
| 130 "HTMLModElement.h", | 128 "HTMLModElement.h", |
| 131 "HTMLNameCollection.cpp", | 129 "HTMLNameCollection.cpp", |
| 132 "HTMLNameCollection.h", | 130 "HTMLNameCollection.h", |
| 133 "HTMLNoEmbedElement.cpp", | 131 "HTMLNoEmbedElement.cpp", |
| 134 "HTMLNoEmbedElement.h", | 132 "HTMLNoEmbedElement.h", |
| (...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 540 "track/vtt/VTTToken.h", | 538 "track/vtt/VTTToken.h", |
| 541 "track/vtt/VTTTokenizer.cpp", | 539 "track/vtt/VTTTokenizer.cpp", |
| 542 "track/vtt/VTTTokenizer.h", | 540 "track/vtt/VTTTokenizer.h", |
| 543 ] | 541 ] |
| 544 | 542 |
| 545 configs += [ | 543 configs += [ |
| 546 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 544 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 547 "//build/config/compiler:no_size_t_to_int_warning", | 545 "//build/config/compiler:no_size_t_to_int_warning", |
| 548 ] | 546 ] |
| 549 } | 547 } |
| OLD | NEW |