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("dom") { | 7 blink_core_sources("dom") { |
8 split_count = 5 | 8 split_count = 5 |
9 | 9 |
10 sources = [ | 10 sources = [ |
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 "LayoutTreeBuilder.h", | 169 "LayoutTreeBuilder.h", |
170 "LayoutTreeBuilderTraversal.cpp", | 170 "LayoutTreeBuilderTraversal.cpp", |
171 "LayoutTreeBuilderTraversal.h", | 171 "LayoutTreeBuilderTraversal.h", |
172 "LiveNodeList.cpp", | 172 "LiveNodeList.cpp", |
173 "LiveNodeList.h", | 173 "LiveNodeList.h", |
174 "LiveNodeListBase.cpp", | 174 "LiveNodeListBase.cpp", |
175 "LiveNodeListBase.h", | 175 "LiveNodeListBase.h", |
176 "MessageChannel.cpp", | 176 "MessageChannel.cpp", |
177 "MessageChannel.h", | 177 "MessageChannel.h", |
178 "MessagePort.cpp", | 178 "MessagePort.cpp", |
| 179 "ModuleMap.cpp", |
| 180 "ModuleMap.h", |
179 "MutationCallback.h", | 181 "MutationCallback.h", |
180 "MutationObserver.cpp", | 182 "MutationObserver.cpp", |
181 "MutationObserver.h", | 183 "MutationObserver.h", |
182 "MutationObserverInterestGroup.cpp", | 184 "MutationObserverInterestGroup.cpp", |
183 "MutationObserverInterestGroup.h", | 185 "MutationObserverInterestGroup.h", |
184 "MutationObserverRegistration.cpp", | 186 "MutationObserverRegistration.cpp", |
185 "MutationObserverRegistration.h", | 187 "MutationObserverRegistration.h", |
186 "MutationRecord.cpp", | 188 "MutationRecord.cpp", |
187 "MutationRecord.h", | 189 "MutationRecord.h", |
188 "NameNodeList.cpp", | 190 "NameNodeList.cpp", |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
392 "shadow/SlotAssignment.h", | 394 "shadow/SlotAssignment.h", |
393 "shadow/SlotScopedTraversal.cpp", | 395 "shadow/SlotScopedTraversal.cpp", |
394 "shadow/SlotScopedTraversal.h", | 396 "shadow/SlotScopedTraversal.h", |
395 ] | 397 ] |
396 | 398 |
397 configs += [ | 399 configs += [ |
398 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 400 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
399 "//build/config/compiler:no_size_t_to_int_warning", | 401 "//build/config/compiler:no_size_t_to_int_warning", |
400 ] | 402 ] |
401 } | 403 } |
OLD | NEW |