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 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
286 "cssom/CSSTranslation.h", | 286 "cssom/CSSTranslation.h", |
287 "cssom/CSSURLImageValue.h", | 287 "cssom/CSSURLImageValue.h", |
288 "cssom/CSSUnparsedValue.cpp", | 288 "cssom/CSSUnparsedValue.cpp", |
289 "cssom/CSSUnparsedValue.h", | 289 "cssom/CSSUnparsedValue.h", |
290 "cssom/CSSUnsupportedStyleValue.cpp", | 290 "cssom/CSSUnsupportedStyleValue.cpp", |
291 "cssom/CSSUnsupportedStyleValue.h", | 291 "cssom/CSSUnsupportedStyleValue.h", |
292 "cssom/ComputedStylePropertyMap.cpp", | 292 "cssom/ComputedStylePropertyMap.cpp", |
293 "cssom/ComputedStylePropertyMap.h", | 293 "cssom/ComputedStylePropertyMap.h", |
294 "cssom/FilteredComputedStylePropertyMap.cpp", | 294 "cssom/FilteredComputedStylePropertyMap.cpp", |
295 "cssom/FilteredComputedStylePropertyMap.h", | 295 "cssom/FilteredComputedStylePropertyMap.h", |
296 "cssom/ImmutableStylePropertyMap.h", | |
297 "cssom/InlineStylePropertyMap.cpp", | 296 "cssom/InlineStylePropertyMap.cpp", |
298 "cssom/InlineStylePropertyMap.h", | 297 "cssom/InlineStylePropertyMap.h", |
299 "cssom/MutableStylePropertyMap.h", | 298 "cssom/MutableStylePropertyMap.h", |
300 "cssom/StylePropertyMap.cpp", | 299 "cssom/StylePropertyMap.cpp", |
301 "cssom/StylePropertyMap.h", | 300 "cssom/StylePropertyMap.h", |
| 301 "cssom/StylePropertyMapReadonly.cpp", |
| 302 "cssom/StylePropertyMapReadonly.h", |
302 "cssom/StyleValueFactory.cpp", | 303 "cssom/StyleValueFactory.cpp", |
303 "cssom/StyleValueFactory.h", | 304 "cssom/StyleValueFactory.h", |
304 "cssom/WindowGetComputedStyle.h", | 305 "cssom/WindowGetComputedStyle.h", |
305 "invalidation/InvalidationSet.cpp", | 306 "invalidation/InvalidationSet.cpp", |
306 "invalidation/InvalidationSet.h", | 307 "invalidation/InvalidationSet.h", |
307 "invalidation/PendingInvalidations.h", | 308 "invalidation/PendingInvalidations.h", |
308 "invalidation/StyleInvalidator.cpp", | 309 "invalidation/StyleInvalidator.cpp", |
309 "invalidation/StyleInvalidator.h", | 310 "invalidation/StyleInvalidator.h", |
310 "parser/CSSAtRuleID.cpp", | 311 "parser/CSSAtRuleID.cpp", |
311 "parser/CSSAtRuleID.h", | 312 "parser/CSSAtRuleID.h", |
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
505 "resolver/TransformBuilder.h", | 506 "resolver/TransformBuilder.h", |
506 "resolver/ViewportStyleResolver.cpp", | 507 "resolver/ViewportStyleResolver.cpp", |
507 "resolver/ViewportStyleResolver.h", | 508 "resolver/ViewportStyleResolver.h", |
508 ] | 509 ] |
509 | 510 |
510 configs += [ | 511 configs += [ |
511 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 512 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
512 "//build/config/compiler:no_size_t_to_int_warning", | 513 "//build/config/compiler:no_size_t_to_int_warning", |
513 ] | 514 ] |
514 } | 515 } |
OLD | NEW |