| 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 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 "parser/CSSLazyPropertyParserImpl.h", | 341 "parser/CSSLazyPropertyParserImpl.h", |
| 342 "parser/CSSParser.cpp", | 342 "parser/CSSParser.cpp", |
| 343 "parser/CSSParser.h", | 343 "parser/CSSParser.h", |
| 344 "parser/CSSParserContext.cpp", | 344 "parser/CSSParserContext.cpp", |
| 345 "parser/CSSParserContext.h", | 345 "parser/CSSParserContext.h", |
| 346 "parser/CSSParserFastPaths.cpp", | 346 "parser/CSSParserFastPaths.cpp", |
| 347 "parser/CSSParserFastPaths.h", | 347 "parser/CSSParserFastPaths.h", |
| 348 "parser/CSSParserIdioms.h", | 348 "parser/CSSParserIdioms.h", |
| 349 "parser/CSSParserImpl.cpp", | 349 "parser/CSSParserImpl.cpp", |
| 350 "parser/CSSParserImpl.h", | 350 "parser/CSSParserImpl.h", |
| 351 "parser/CSSParserLocalContext.cpp", |
| 352 "parser/CSSParserLocalContext.h", |
| 351 "parser/CSSParserMode.h", | 353 "parser/CSSParserMode.h", |
| 352 "parser/CSSParserObserver.h", | 354 "parser/CSSParserObserver.h", |
| 353 "parser/CSSParserObserverWrapper.cpp", | 355 "parser/CSSParserObserverWrapper.cpp", |
| 354 "parser/CSSParserObserverWrapper.h", | 356 "parser/CSSParserObserverWrapper.h", |
| 355 "parser/CSSParserSelector.cpp", | 357 "parser/CSSParserSelector.cpp", |
| 356 "parser/CSSParserSelector.h", | 358 "parser/CSSParserSelector.h", |
| 357 "parser/CSSParserToken.cpp", | 359 "parser/CSSParserToken.cpp", |
| 358 "parser/CSSParserToken.h", | 360 "parser/CSSParserToken.h", |
| 359 "parser/CSSParserTokenRange.cpp", | 361 "parser/CSSParserTokenRange.cpp", |
| 360 "parser/CSSParserTokenRange.h", | 362 "parser/CSSParserTokenRange.h", |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 558 "resolver/TransformBuilder.h", | 560 "resolver/TransformBuilder.h", |
| 559 "resolver/ViewportStyleResolver.cpp", | 561 "resolver/ViewportStyleResolver.cpp", |
| 560 "resolver/ViewportStyleResolver.h", | 562 "resolver/ViewportStyleResolver.h", |
| 561 ] | 563 ] |
| 562 | 564 |
| 563 configs += [ | 565 configs += [ |
| 564 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 566 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 565 "//build/config/compiler:no_size_t_to_int_warning", | 567 "//build/config/compiler:no_size_t_to_int_warning", |
| 566 ] | 568 ] |
| 567 } | 569 } |
| OLD | NEW |