| 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 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 339 "parser/CSSTokenizer.cpp", | 339 "parser/CSSTokenizer.cpp", |
| 340 "parser/CSSTokenizerInputStream.cpp", | 340 "parser/CSSTokenizerInputStream.cpp", |
| 341 "parser/CSSVariableParser.cpp", | 341 "parser/CSSVariableParser.cpp", |
| 342 "parser/CSSVariableParser.h", | 342 "parser/CSSVariableParser.h", |
| 343 "parser/MediaQueryBlockWatcher.cpp", | 343 "parser/MediaQueryBlockWatcher.cpp", |
| 344 "parser/MediaQueryParser.cpp", | 344 "parser/MediaQueryParser.cpp", |
| 345 "parser/SizesAttributeParser.cpp", | 345 "parser/SizesAttributeParser.cpp", |
| 346 "parser/SizesCalcParser.cpp", | 346 "parser/SizesCalcParser.cpp", |
| 347 "properties/CSSPropertyAPI.h", | 347 "properties/CSSPropertyAPI.h", |
| 348 "properties/CSSPropertyAPIMargin.cpp", | 348 "properties/CSSPropertyAPIMargin.cpp", |
| 349 "properties/CSSPropertyAPIMargin.h", | |
| 350 "properties/CSSPropertyAPIWebkitMargin.cpp", | 349 "properties/CSSPropertyAPIWebkitMargin.cpp", |
| 351 "properties/CSSPropertyAPIWebkitMargin.h", | |
| 352 "properties/CSSPropertyAPIWebkitPadding.cpp", | 350 "properties/CSSPropertyAPIWebkitPadding.cpp", |
| 353 "properties/CSSPropertyAPIWebkitPadding.h", | |
| 354 "properties/CSSPropertyAPIWillChange.cpp", | 351 "properties/CSSPropertyAPIWillChange.cpp", |
| 355 "properties/CSSPropertyAPIWillChange.h", | |
| 356 "properties/CSSPropertyDescriptor.h", | 352 "properties/CSSPropertyDescriptor.h", |
| 357 "resolver/AnimatedStyleBuilder.cpp", | 353 "resolver/AnimatedStyleBuilder.cpp", |
| 358 "resolver/AnimatedStyleBuilder.h", | 354 "resolver/AnimatedStyleBuilder.h", |
| 359 "resolver/CSSToStyleMap.cpp", | 355 "resolver/CSSToStyleMap.cpp", |
| 360 "resolver/CSSToStyleMap.h", | 356 "resolver/CSSToStyleMap.h", |
| 361 "resolver/CSSVariableResolver.cpp", | 357 "resolver/CSSVariableResolver.cpp", |
| 362 "resolver/CSSVariableResolver.h", | 358 "resolver/CSSVariableResolver.h", |
| 363 "resolver/ElementResolveContext.cpp", | 359 "resolver/ElementResolveContext.cpp", |
| 364 "resolver/ElementResolveContext.h", | 360 "resolver/ElementResolveContext.h", |
| 365 "resolver/ElementStyleResources.cpp", | 361 "resolver/ElementStyleResources.cpp", |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 398 "resolver/TransformBuilder.h", | 394 "resolver/TransformBuilder.h", |
| 399 "resolver/ViewportStyleResolver.cpp", | 395 "resolver/ViewportStyleResolver.cpp", |
| 400 "resolver/ViewportStyleResolver.h", | 396 "resolver/ViewportStyleResolver.h", |
| 401 ] | 397 ] |
| 402 | 398 |
| 403 configs += [ | 399 configs += [ |
| 404 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 400 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 405 "//build/config/compiler:no_size_t_to_int_warning", | 401 "//build/config/compiler:no_size_t_to_int_warning", |
| 406 ] | 402 ] |
| 407 } | 403 } |
| OLD | NEW |