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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 "LayoutTreeBuilderTraversal.h", | 176 "LayoutTreeBuilderTraversal.h", |
177 "LiveNodeList.cpp", | 177 "LiveNodeList.cpp", |
178 "LiveNodeList.h", | 178 "LiveNodeList.h", |
179 "LiveNodeListBase.cpp", | 179 "LiveNodeListBase.cpp", |
180 "LiveNodeListBase.h", | 180 "LiveNodeListBase.h", |
181 "MessageChannel.cpp", | 181 "MessageChannel.cpp", |
182 "MessageChannel.h", | 182 "MessageChannel.h", |
183 "MessagePort.cpp", | 183 "MessagePort.cpp", |
184 "Modulator.cpp", | 184 "Modulator.cpp", |
185 "Modulator.h", | 185 "Modulator.h", |
| 186 "ModulatorImpl.cpp", |
| 187 "ModulatorImpl.h", |
| 188 "ModuleMap.cpp", |
| 189 "ModuleMap.h", |
186 "ModuleScript.cpp", | 190 "ModuleScript.cpp", |
187 "ModuleScript.h", | 191 "ModuleScript.h", |
188 "MutationCallback.h", | 192 "MutationCallback.h", |
189 "MutationObserver.cpp", | 193 "MutationObserver.cpp", |
190 "MutationObserver.h", | 194 "MutationObserver.h", |
191 "MutationObserverInterestGroup.cpp", | 195 "MutationObserverInterestGroup.cpp", |
192 "MutationObserverInterestGroup.h", | 196 "MutationObserverInterestGroup.h", |
193 "MutationObserverRegistration.cpp", | 197 "MutationObserverRegistration.cpp", |
194 "MutationObserverRegistration.h", | 198 "MutationObserverRegistration.h", |
195 "MutationRecord.cpp", | 199 "MutationRecord.cpp", |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
239 "ResizeObserverCallback.h", | 243 "ResizeObserverCallback.h", |
240 "ResizeObserverController.cpp", | 244 "ResizeObserverController.cpp", |
241 "ResizeObserverController.h", | 245 "ResizeObserverController.h", |
242 "ResizeObserverEntry.cpp", | 246 "ResizeObserverEntry.cpp", |
243 "ResizeObserverEntry.h", | 247 "ResizeObserverEntry.h", |
244 "SandboxFlags.cpp", | 248 "SandboxFlags.cpp", |
245 "SandboxFlags.h", | 249 "SandboxFlags.h", |
246 "ScopedWindowFocusAllowedIndicator.h", | 250 "ScopedWindowFocusAllowedIndicator.h", |
247 "ScriptLoader.cpp", | 251 "ScriptLoader.cpp", |
248 "ScriptLoader.h", | 252 "ScriptLoader.h", |
| 253 "ScriptModuleResolver.h", |
| 254 "ScriptModuleResolverImpl.cpp", |
| 255 "ScriptModuleResolverImpl.h", |
249 "ScriptRunner.cpp", | 256 "ScriptRunner.cpp", |
250 "ScriptRunner.h", | 257 "ScriptRunner.h", |
251 "ScriptableDocumentParser.cpp", | 258 "ScriptableDocumentParser.cpp", |
252 "ScriptableDocumentParser.h", | 259 "ScriptableDocumentParser.h", |
253 "ScriptedAnimationController.cpp", | 260 "ScriptedAnimationController.cpp", |
254 "ScriptedAnimationController.h", | 261 "ScriptedAnimationController.h", |
255 "ScriptedIdleTaskController.cpp", | 262 "ScriptedIdleTaskController.cpp", |
256 "ScriptedIdleTaskController.h", | 263 "ScriptedIdleTaskController.h", |
257 "SecurityContext.cpp", | 264 "SecurityContext.cpp", |
258 "SecurityContext.h", | 265 "SecurityContext.h", |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
406 "shadow/SlotAssignment.h", | 413 "shadow/SlotAssignment.h", |
407 "shadow/SlotScopedTraversal.cpp", | 414 "shadow/SlotScopedTraversal.cpp", |
408 "shadow/SlotScopedTraversal.h", | 415 "shadow/SlotScopedTraversal.h", |
409 ] | 416 ] |
410 | 417 |
411 configs += [ | 418 configs += [ |
412 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 419 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
413 "//build/config/compiler:no_size_t_to_int_warning", | 420 "//build/config/compiler:no_size_t_to_int_warning", |
414 ] | 421 ] |
415 } | 422 } |
OLD | NEW |