| 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 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 "cssom/WindowGetComputedStyle.h", | 296 "cssom/WindowGetComputedStyle.h", |
| 297 "invalidation/InvalidationSet.cpp", | 297 "invalidation/InvalidationSet.cpp", |
| 298 "invalidation/InvalidationSet.h", | 298 "invalidation/InvalidationSet.h", |
| 299 "invalidation/PendingInvalidations.h", | 299 "invalidation/PendingInvalidations.h", |
| 300 "invalidation/StyleInvalidator.cpp", | 300 "invalidation/StyleInvalidator.cpp", |
| 301 "invalidation/StyleInvalidator.h", | 301 "invalidation/StyleInvalidator.h", |
| 302 "invalidation/StyleSheetInvalidationAnalysis.cpp", | 302 "invalidation/StyleSheetInvalidationAnalysis.cpp", |
| 303 "invalidation/StyleSheetInvalidationAnalysis.h", | 303 "invalidation/StyleSheetInvalidationAnalysis.h", |
| 304 "parser/CSSAtRuleID.cpp", | 304 "parser/CSSAtRuleID.cpp", |
| 305 "parser/CSSAtRuleID.h", | 305 "parser/CSSAtRuleID.h", |
| 306 "parser/CSSLazyParsingState.cpp", |
| 307 "parser/CSSLazyParsingState.h", |
| 308 "parser/CSSLazyPropertyParserImpl.cpp", |
| 309 "parser/CSSLazyPropertyParserImpl.h", |
| 306 "parser/CSSParser.cpp", | 310 "parser/CSSParser.cpp", |
| 307 "parser/CSSParser.h", | 311 "parser/CSSParser.h", |
| 308 "parser/CSSParserFastPaths.cpp", | 312 "parser/CSSParserFastPaths.cpp", |
| 309 "parser/CSSParserFastPaths.h", | 313 "parser/CSSParserFastPaths.h", |
| 310 "parser/CSSParserImpl.cpp", | 314 "parser/CSSParserImpl.cpp", |
| 311 "parser/CSSParserImpl.h", | 315 "parser/CSSParserImpl.h", |
| 312 "parser/CSSParserMode.cpp", | 316 "parser/CSSParserMode.cpp", |
| 313 "parser/CSSParserMode.h", | 317 "parser/CSSParserMode.h", |
| 314 "parser/CSSParserObserverWrapper.cpp", | 318 "parser/CSSParserObserverWrapper.cpp", |
| 315 "parser/CSSParserSelector.cpp", | 319 "parser/CSSParserSelector.cpp", |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 "resolver/TransformBuilder.h", | 379 "resolver/TransformBuilder.h", |
| 376 "resolver/ViewportStyleResolver.cpp", | 380 "resolver/ViewportStyleResolver.cpp", |
| 377 "resolver/ViewportStyleResolver.h", | 381 "resolver/ViewportStyleResolver.h", |
| 378 ] | 382 ] |
| 379 | 383 |
| 380 configs += [ | 384 configs += [ |
| 381 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 385 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 382 "//build/config/compiler:no_size_t_to_int_warning", | 386 "//build/config/compiler:no_size_t_to_int_warning", |
| 383 ] | 387 ] |
| 384 } | 388 } |
| OLD | NEW |