Chromium Code Reviews| 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 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 385 "properties/CSSPropertyAPIWebkitLineClamp.cpp", | 385 "properties/CSSPropertyAPIWebkitLineClamp.cpp", |
| 386 "properties/CSSPropertyAPIWebkitPadding.cpp", | 386 "properties/CSSPropertyAPIWebkitPadding.cpp", |
| 387 "properties/CSSPropertyAPIWebkitTextEmphasisStyle.cpp", | 387 "properties/CSSPropertyAPIWebkitTextEmphasisStyle.cpp", |
| 388 "properties/CSSPropertyAPIWebkitTransformOriginZ.cpp", | 388 "properties/CSSPropertyAPIWebkitTransformOriginZ.cpp", |
| 389 "properties/CSSPropertyAPIWillChange.cpp", | 389 "properties/CSSPropertyAPIWillChange.cpp", |
| 390 "properties/CSSPropertyAPIZIndex.cpp", | 390 "properties/CSSPropertyAPIZIndex.cpp", |
| 391 "properties/CSSPropertyAPIZoom.cpp", | 391 "properties/CSSPropertyAPIZoom.cpp", |
| 392 "properties/CSSPropertyAlignmentUtils.cpp", | 392 "properties/CSSPropertyAlignmentUtils.cpp", |
| 393 "properties/CSSPropertyAlignmentUtils.h", | 393 "properties/CSSPropertyAlignmentUtils.h", |
| 394 "properties/CSSPropertyDescriptor.h", | 394 "properties/CSSPropertyDescriptor.h", |
| 395 "properties/CSSPropertyPositionUtils.h", | |
|
sashab
2017/01/20 04:39:49
Missing CSSPropertyPositionUtils.cpp :)
sashab
2017/01/20 04:39:49
Missing CSSPropertyPositionUtils.cpp :)
nainar
2017/01/20 06:22:38
Templated functions need to be defined need to be
| |
| 395 "resolver/AnimatedStyleBuilder.cpp", | 396 "resolver/AnimatedStyleBuilder.cpp", |
| 396 "resolver/AnimatedStyleBuilder.h", | 397 "resolver/AnimatedStyleBuilder.h", |
| 397 "resolver/CSSToStyleMap.cpp", | 398 "resolver/CSSToStyleMap.cpp", |
| 398 "resolver/CSSToStyleMap.h", | 399 "resolver/CSSToStyleMap.h", |
| 399 "resolver/CSSVariableResolver.cpp", | 400 "resolver/CSSVariableResolver.cpp", |
| 400 "resolver/CSSVariableResolver.h", | 401 "resolver/CSSVariableResolver.h", |
| 401 "resolver/ElementResolveContext.cpp", | 402 "resolver/ElementResolveContext.cpp", |
| 402 "resolver/ElementResolveContext.h", | 403 "resolver/ElementResolveContext.h", |
| 403 "resolver/ElementStyleResources.cpp", | 404 "resolver/ElementStyleResources.cpp", |
| 404 "resolver/ElementStyleResources.h", | 405 "resolver/ElementStyleResources.h", |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 436 "resolver/TransformBuilder.h", | 437 "resolver/TransformBuilder.h", |
| 437 "resolver/ViewportStyleResolver.cpp", | 438 "resolver/ViewportStyleResolver.cpp", |
| 438 "resolver/ViewportStyleResolver.h", | 439 "resolver/ViewportStyleResolver.h", |
| 439 ] | 440 ] |
| 440 | 441 |
| 441 configs += [ | 442 configs += [ |
| 442 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 443 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 443 "//build/config/compiler:no_size_t_to_int_warning", | 444 "//build/config/compiler:no_size_t_to_int_warning", |
| 444 ] | 445 ] |
| 445 } | 446 } |
| OLD | NEW |