| 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("css") { | 7 blink_core_sources("css") { |
| 8 split_count = 5 | 8 split_count = 5 |
| 9 sources = [ | 9 sources = [ |
| 10 "ActiveStyleSheets.cpp", | 10 "ActiveStyleSheets.cpp", |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 "cssom/CSSUnparsedValue.cpp", | 290 "cssom/CSSUnparsedValue.cpp", |
| 291 "cssom/CSSUnparsedValue.h", | 291 "cssom/CSSUnparsedValue.h", |
| 292 "cssom/CSSUnsupportedStyleValue.cpp", | 292 "cssom/CSSUnsupportedStyleValue.cpp", |
| 293 "cssom/CSSUnsupportedStyleValue.h", | 293 "cssom/CSSUnsupportedStyleValue.h", |
| 294 "cssom/ComputedStylePropertyMap.cpp", | 294 "cssom/ComputedStylePropertyMap.cpp", |
| 295 "cssom/ComputedStylePropertyMap.h", | 295 "cssom/ComputedStylePropertyMap.h", |
| 296 "cssom/FilteredComputedStylePropertyMap.cpp", | 296 "cssom/FilteredComputedStylePropertyMap.cpp", |
| 297 "cssom/FilteredComputedStylePropertyMap.h", | 297 "cssom/FilteredComputedStylePropertyMap.h", |
| 298 "cssom/InlineStylePropertyMap.cpp", | 298 "cssom/InlineStylePropertyMap.cpp", |
| 299 "cssom/InlineStylePropertyMap.h", | 299 "cssom/InlineStylePropertyMap.h", |
| 300 "cssom/MutableStylePropertyMap.h", | |
| 301 "cssom/StylePropertyMap.cpp", | 300 "cssom/StylePropertyMap.cpp", |
| 302 "cssom/StylePropertyMap.h", | 301 "cssom/StylePropertyMap.h", |
| 303 "cssom/StylePropertyMapReadonly.cpp", | 302 "cssom/StylePropertyMapReadonly.cpp", |
| 304 "cssom/StylePropertyMapReadonly.h", | 303 "cssom/StylePropertyMapReadonly.h", |
| 305 "cssom/StyleValueFactory.cpp", | 304 "cssom/StyleValueFactory.cpp", |
| 306 "cssom/StyleValueFactory.h", | 305 "cssom/StyleValueFactory.h", |
| 307 "cssom/WindowGetComputedStyle.h", | 306 "cssom/WindowGetComputedStyle.h", |
| 308 "invalidation/InvalidationSet.cpp", | 307 "invalidation/InvalidationSet.cpp", |
| 309 "invalidation/InvalidationSet.h", | 308 "invalidation/InvalidationSet.h", |
| 310 "invalidation/PendingInvalidations.h", | 309 "invalidation/PendingInvalidations.h", |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 514 "resolver/TransformBuilder.h", | 513 "resolver/TransformBuilder.h", |
| 515 "resolver/ViewportStyleResolver.cpp", | 514 "resolver/ViewportStyleResolver.cpp", |
| 516 "resolver/ViewportStyleResolver.h", | 515 "resolver/ViewportStyleResolver.h", |
| 517 ] | 516 ] |
| 518 | 517 |
| 519 configs += [ | 518 configs += [ |
| 520 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 519 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 521 "//build/config/compiler:no_size_t_to_int_warning", | 520 "//build/config/compiler:no_size_t_to_int_warning", |
| 522 ] | 521 ] |
| 523 } | 522 } |
| OLD | NEW |