| 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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 "StringCallback.cpp", | 254 "StringCallback.cpp", |
| 255 "StringCallback.h", | 255 "StringCallback.h", |
| 256 "StyleChangeReason.cpp", | 256 "StyleChangeReason.cpp", |
| 257 "StyleChangeReason.h", | 257 "StyleChangeReason.h", |
| 258 "StyleElement.cpp", | 258 "StyleElement.cpp", |
| 259 "StyleElement.h", | 259 "StyleElement.h", |
| 260 "StyleEngine.cpp", | 260 "StyleEngine.cpp", |
| 261 "StyleEngine.h", | 261 "StyleEngine.h", |
| 262 "StyleEngineContext.cpp", | 262 "StyleEngineContext.cpp", |
| 263 "StyleEngineContext.h", | 263 "StyleEngineContext.h", |
| 264 "StyleReattachData.h", |
| 264 "StyleSheetCandidate.cpp", | 265 "StyleSheetCandidate.cpp", |
| 265 "StyleSheetCandidate.h", | 266 "StyleSheetCandidate.h", |
| 266 "StyleSheetCollection.cpp", | 267 "StyleSheetCollection.cpp", |
| 267 "StyleSheetCollection.h", | 268 "StyleSheetCollection.h", |
| 268 "SynchronousMutationNotifier.cpp", | 269 "SynchronousMutationNotifier.cpp", |
| 269 "SynchronousMutationNotifier.h", | 270 "SynchronousMutationNotifier.h", |
| 270 "SynchronousMutationObserver.cpp", | 271 "SynchronousMutationObserver.cpp", |
| 271 "SynchronousMutationObserver.h", | 272 "SynchronousMutationObserver.h", |
| 272 "TagCollection.cpp", | 273 "TagCollection.cpp", |
| 273 "TagCollection.h", | 274 "TagCollection.h", |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 "shadow/SlotAssignment.h", | 392 "shadow/SlotAssignment.h", |
| 392 "shadow/SlotScopedTraversal.cpp", | 393 "shadow/SlotScopedTraversal.cpp", |
| 393 "shadow/SlotScopedTraversal.h", | 394 "shadow/SlotScopedTraversal.h", |
| 394 ] | 395 ] |
| 395 | 396 |
| 396 configs += [ | 397 configs += [ |
| 397 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 398 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 398 "//build/config/compiler:no_size_t_to_int_warning", | 399 "//build/config/compiler:no_size_t_to_int_warning", |
| 399 ] | 400 ] |
| 400 } | 401 } |
| OLD | NEW |