| 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 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 "cssom/StylePropertyMap.cpp", | 299 "cssom/StylePropertyMap.cpp", |
| 300 "cssom/StylePropertyMap.h", | 300 "cssom/StylePropertyMap.h", |
| 301 "cssom/StyleValueFactory.cpp", | 301 "cssom/StyleValueFactory.cpp", |
| 302 "cssom/StyleValueFactory.h", | 302 "cssom/StyleValueFactory.h", |
| 303 "cssom/WindowGetComputedStyle.h", | 303 "cssom/WindowGetComputedStyle.h", |
| 304 "invalidation/InvalidationSet.cpp", | 304 "invalidation/InvalidationSet.cpp", |
| 305 "invalidation/InvalidationSet.h", | 305 "invalidation/InvalidationSet.h", |
| 306 "invalidation/PendingInvalidations.h", | 306 "invalidation/PendingInvalidations.h", |
| 307 "invalidation/StyleInvalidator.cpp", | 307 "invalidation/StyleInvalidator.cpp", |
| 308 "invalidation/StyleInvalidator.h", | 308 "invalidation/StyleInvalidator.h", |
| 309 "invalidation/StyleSheetInvalidationAnalysis.cpp", | |
| 310 "invalidation/StyleSheetInvalidationAnalysis.h", | |
| 311 "parser/CSSAtRuleID.cpp", | 309 "parser/CSSAtRuleID.cpp", |
| 312 "parser/CSSAtRuleID.h", | 310 "parser/CSSAtRuleID.h", |
| 313 "parser/CSSLazyParsingState.cpp", | 311 "parser/CSSLazyParsingState.cpp", |
| 314 "parser/CSSLazyParsingState.h", | 312 "parser/CSSLazyParsingState.h", |
| 315 "parser/CSSLazyPropertyParserImpl.cpp", | 313 "parser/CSSLazyPropertyParserImpl.cpp", |
| 316 "parser/CSSLazyPropertyParserImpl.h", | 314 "parser/CSSLazyPropertyParserImpl.h", |
| 317 "parser/CSSParser.cpp", | 315 "parser/CSSParser.cpp", |
| 318 "parser/CSSParser.h", | 316 "parser/CSSParser.h", |
| 319 "parser/CSSParserFastPaths.cpp", | 317 "parser/CSSParserFastPaths.cpp", |
| 320 "parser/CSSParserFastPaths.h", | 318 "parser/CSSParserFastPaths.h", |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 "resolver/TransformBuilder.h", | 389 "resolver/TransformBuilder.h", |
| 392 "resolver/ViewportStyleResolver.cpp", | 390 "resolver/ViewportStyleResolver.cpp", |
| 393 "resolver/ViewportStyleResolver.h", | 391 "resolver/ViewportStyleResolver.h", |
| 394 ] | 392 ] |
| 395 | 393 |
| 396 configs += [ | 394 configs += [ |
| 397 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 395 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 398 "//build/config/compiler:no_size_t_to_int_warning", | 396 "//build/config/compiler:no_size_t_to_int_warning", |
| 399 ] | 397 ] |
| 400 } | 398 } |
| OLD | NEW |