| 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 = [ |
| 11 "AXObjectCache.cpp", | 11 "AXObjectCache.cpp", |
| 12 "AXObjectCache.h", | 12 "AXObjectCache.h", |
| 13 "ActiveDOMObject.cpp", | |
| 14 "Attr.cpp", | 13 "Attr.cpp", |
| 15 "AttributeCollection.h", | 14 "AttributeCollection.h", |
| 16 "CDATASection.cpp", | 15 "CDATASection.cpp", |
| 17 "CDATASection.h", | 16 "CDATASection.h", |
| 18 "CSSSelectorWatch.cpp", | 17 "CSSSelectorWatch.cpp", |
| 19 "CharacterData.cpp", | 18 "CharacterData.cpp", |
| 20 "ChildFrameDisconnector.cpp", | 19 "ChildFrameDisconnector.cpp", |
| 21 "ChildFrameDisconnector.h", | 20 "ChildFrameDisconnector.h", |
| 22 "ChildListMutationScope.cpp", | 21 "ChildListMutationScope.cpp", |
| 23 "ChildListMutationScope.h", | 22 "ChildListMutationScope.h", |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 "StyleElement.h", | 258 "StyleElement.h", |
| 260 "StyleEngine.cpp", | 259 "StyleEngine.cpp", |
| 261 "StyleEngine.h", | 260 "StyleEngine.h", |
| 262 "StyleEngineContext.cpp", | 261 "StyleEngineContext.cpp", |
| 263 "StyleEngineContext.h", | 262 "StyleEngineContext.h", |
| 264 "StyleReattachData.h", | 263 "StyleReattachData.h", |
| 265 "StyleSheetCandidate.cpp", | 264 "StyleSheetCandidate.cpp", |
| 266 "StyleSheetCandidate.h", | 265 "StyleSheetCandidate.h", |
| 267 "StyleSheetCollection.cpp", | 266 "StyleSheetCollection.cpp", |
| 268 "StyleSheetCollection.h", | 267 "StyleSheetCollection.h", |
| 268 "SuspendableObject.cpp", |
| 269 "SynchronousMutationNotifier.cpp", | 269 "SynchronousMutationNotifier.cpp", |
| 270 "SynchronousMutationNotifier.h", | 270 "SynchronousMutationNotifier.h", |
| 271 "SynchronousMutationObserver.cpp", | 271 "SynchronousMutationObserver.cpp", |
| 272 "SynchronousMutationObserver.h", | 272 "SynchronousMutationObserver.h", |
| 273 "TagCollection.cpp", | 273 "TagCollection.cpp", |
| 274 "TagCollection.h", | 274 "TagCollection.h", |
| 275 "TaskRunnerHelper.cpp", | 275 "TaskRunnerHelper.cpp", |
| 276 "TaskRunnerHelper.h", | 276 "TaskRunnerHelper.h", |
| 277 "Text.cpp", | 277 "Text.cpp", |
| 278 "TextLinkColors.cpp", | 278 "TextLinkColors.cpp", |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 "shadow/SlotAssignment.h", | 392 "shadow/SlotAssignment.h", |
| 393 "shadow/SlotScopedTraversal.cpp", | 393 "shadow/SlotScopedTraversal.cpp", |
| 394 "shadow/SlotScopedTraversal.h", | 394 "shadow/SlotScopedTraversal.h", |
| 395 ] | 395 ] |
| 396 | 396 |
| 397 configs += [ | 397 configs += [ |
| 398 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 398 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 399 "//build/config/compiler:no_size_t_to_int_warning", | 399 "//build/config/compiler:no_size_t_to_int_warning", |
| 400 ] | 400 ] |
| 401 } | 401 } |
| OLD | NEW |