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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 "MessageChannel.cpp", | 193 "MessageChannel.cpp", |
194 "MessageChannel.h", | 194 "MessageChannel.h", |
195 "MessagePort.cpp", | 195 "MessagePort.cpp", |
196 "MessagePort.h", | 196 "MessagePort.h", |
197 "Modulator.cpp", | 197 "Modulator.cpp", |
198 "Modulator.h", | 198 "Modulator.h", |
199 "ModulatorImpl.cpp", | 199 "ModulatorImpl.cpp", |
200 "ModulatorImpl.h", | 200 "ModulatorImpl.h", |
201 "ModuleMap.cpp", | 201 "ModuleMap.cpp", |
202 "ModuleMap.h", | 202 "ModuleMap.h", |
| 203 "ModulePendingScript.cpp", |
| 204 "ModulePendingScript.h", |
203 "ModuleScript.cpp", | 205 "ModuleScript.cpp", |
204 "ModuleScript.h", | 206 "ModuleScript.h", |
205 "MutationCallback.h", | 207 "MutationCallback.h", |
206 "MutationObserver.cpp", | 208 "MutationObserver.cpp", |
207 "MutationObserver.h", | 209 "MutationObserver.h", |
208 "MutationObserverInterestGroup.cpp", | 210 "MutationObserverInterestGroup.cpp", |
209 "MutationObserverInterestGroup.h", | 211 "MutationObserverInterestGroup.h", |
210 "MutationObserverRegistration.cpp", | 212 "MutationObserverRegistration.cpp", |
211 "MutationObserverRegistration.h", | 213 "MutationObserverRegistration.h", |
212 "MutationRecord.cpp", | 214 "MutationRecord.cpp", |
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
444 "shadow/SlotAssignment.h", | 446 "shadow/SlotAssignment.h", |
445 "shadow/SlotScopedTraversal.cpp", | 447 "shadow/SlotScopedTraversal.cpp", |
446 "shadow/SlotScopedTraversal.h", | 448 "shadow/SlotScopedTraversal.h", |
447 ] | 449 ] |
448 | 450 |
449 configs += [ | 451 configs += [ |
450 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 452 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
451 "//build/config/compiler:no_size_t_to_int_warning", | 453 "//build/config/compiler:no_size_t_to_int_warning", |
452 ] | 454 ] |
453 } | 455 } |
OLD | NEW |