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