| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 "CSSGradientValue.cpp", | 56 "CSSGradientValue.cpp", |
| 57 "CSSGradientValue.h", | 57 "CSSGradientValue.h", |
| 58 "CSSGridAutoRepeatValue.cpp", | 58 "CSSGridAutoRepeatValue.cpp", |
| 59 "CSSGridAutoRepeatValue.h", | 59 "CSSGridAutoRepeatValue.h", |
| 60 "CSSGridLineNamesValue.cpp", | 60 "CSSGridLineNamesValue.cpp", |
| 61 "CSSGridLineNamesValue.h", | 61 "CSSGridLineNamesValue.h", |
| 62 "CSSGridTemplateAreasValue.cpp", | 62 "CSSGridTemplateAreasValue.cpp", |
| 63 "CSSGridTemplateAreasValue.h", | 63 "CSSGridTemplateAreasValue.h", |
| 64 "CSSGroupingRule.cpp", | 64 "CSSGroupingRule.cpp", |
| 65 "CSSGroupingRule.h", | 65 "CSSGroupingRule.h", |
| 66 "CSSIdentifierValue.cpp", |
| 67 "CSSIdentifierValue.h", |
| 66 "CSSImageGeneratorValue.cpp", | 68 "CSSImageGeneratorValue.cpp", |
| 67 "CSSImageSetValue.cpp", | 69 "CSSImageSetValue.cpp", |
| 68 "CSSImageValue.cpp", | 70 "CSSImageValue.cpp", |
| 69 "CSSImportRule.cpp", | 71 "CSSImportRule.cpp", |
| 70 "CSSImportRule.h", | 72 "CSSImportRule.h", |
| 71 "CSSInheritedValue.cpp", | 73 "CSSInheritedValue.cpp", |
| 72 "CSSInheritedValue.h", | 74 "CSSInheritedValue.h", |
| 73 "CSSInitialValue.cpp", | 75 "CSSInitialValue.cpp", |
| 74 "CSSInitialValue.h", | 76 "CSSInitialValue.h", |
| 75 "CSSKeyframeRule.cpp", | 77 "CSSKeyframeRule.cpp", |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 369 "resolver/TransformBuilder.h", | 371 "resolver/TransformBuilder.h", |
| 370 "resolver/ViewportStyleResolver.cpp", | 372 "resolver/ViewportStyleResolver.cpp", |
| 371 "resolver/ViewportStyleResolver.h", | 373 "resolver/ViewportStyleResolver.h", |
| 372 ] | 374 ] |
| 373 | 375 |
| 374 configs += [ | 376 configs += [ |
| 375 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 377 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 376 "//build/config/compiler:no_size_t_to_int_warning", | 378 "//build/config/compiler:no_size_t_to_int_warning", |
| 377 ] | 379 ] |
| 378 } | 380 } |
| OLD | NEW |