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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
102 "HTMLLabelElement.h", | 102 "HTMLLabelElement.h", |
103 "HTMLLegendElement.cpp", | 103 "HTMLLegendElement.cpp", |
104 "HTMLLegendElement.h", | 104 "HTMLLegendElement.h", |
105 "HTMLLinkElement.cpp", | 105 "HTMLLinkElement.cpp", |
106 "HTMLLinkElement.h", | 106 "HTMLLinkElement.h", |
107 "HTMLMapElement.cpp", | 107 "HTMLMapElement.cpp", |
108 "HTMLMapElement.h", | 108 "HTMLMapElement.h", |
109 "HTMLMarqueeElement.cpp", | 109 "HTMLMarqueeElement.cpp", |
110 "HTMLMarqueeElement.h", | 110 "HTMLMarqueeElement.h", |
111 "HTMLMediaElement.cpp", | 111 "HTMLMediaElement.cpp", |
112 "HTMLMediaElementControlsList.cpp", | |
mlamouri (slow - plz ping)
2017/01/25 05:27:31
You are missing the header.
whywhat
2017/03/01 16:17:20
Done. It was consistent with a good half of the li
| |
112 "HTMLMediaSource.cpp", | 113 "HTMLMediaSource.cpp", |
113 "HTMLMediaSource.h", | 114 "HTMLMediaSource.h", |
114 "HTMLMenuElement.cpp", | 115 "HTMLMenuElement.cpp", |
115 "HTMLMenuElement.h", | 116 "HTMLMenuElement.h", |
116 "HTMLMenuItemElement.cpp", | 117 "HTMLMenuItemElement.cpp", |
117 "HTMLMenuItemElement.h", | 118 "HTMLMenuItemElement.h", |
118 "HTMLMetaElement.cpp", | 119 "HTMLMetaElement.cpp", |
119 "HTMLMetaElement.h", | 120 "HTMLMetaElement.h", |
120 "HTMLMeterElement.cpp", | 121 "HTMLMeterElement.cpp", |
121 "HTMLMeterElement.h", | 122 "HTMLMeterElement.h", |
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
511 "track/vtt/VTTToken.h", | 512 "track/vtt/VTTToken.h", |
512 "track/vtt/VTTTokenizer.cpp", | 513 "track/vtt/VTTTokenizer.cpp", |
513 "track/vtt/VTTTokenizer.h", | 514 "track/vtt/VTTTokenizer.h", |
514 ] | 515 ] |
515 | 516 |
516 configs += [ | 517 configs += [ |
517 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 518 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
518 "//build/config/compiler:no_size_t_to_int_warning", | 519 "//build/config/compiler:no_size_t_to_int_warning", |
519 ] | 520 ] |
520 } | 521 } |
OLD | NEW |