| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 "CSSFontFaceSource.h", | 46 "CSSFontFaceSource.h", |
| 47 "CSSFontFaceSrcValue.cpp", | 47 "CSSFontFaceSrcValue.cpp", |
| 48 "CSSFontFaceSrcValue.h", | 48 "CSSFontFaceSrcValue.h", |
| 49 "CSSFontFamilyValue.cpp", | 49 "CSSFontFamilyValue.cpp", |
| 50 "CSSFontFamilyValue.h", | 50 "CSSFontFamilyValue.h", |
| 51 "CSSFontFeatureValue.cpp", | 51 "CSSFontFeatureValue.cpp", |
| 52 "CSSFontFeatureValue.h", | 52 "CSSFontFeatureValue.h", |
| 53 "CSSFontSelector.cpp", | 53 "CSSFontSelector.cpp", |
| 54 "CSSFontSelector.h", | 54 "CSSFontSelector.h", |
| 55 "CSSFontSelectorClient.h", | 55 "CSSFontSelectorClient.h", |
| 56 "CSSFontVariationValue.cpp", |
| 57 "CSSFontVariationValue.h", |
| 56 "CSSFunctionValue.cpp", | 58 "CSSFunctionValue.cpp", |
| 57 "CSSFunctionValue.h", | 59 "CSSFunctionValue.h", |
| 58 "CSSGlobalRuleSet.cpp", | 60 "CSSGlobalRuleSet.cpp", |
| 59 "CSSGlobalRuleSet.h", | 61 "CSSGlobalRuleSet.h", |
| 60 "CSSGradientValue.cpp", | 62 "CSSGradientValue.cpp", |
| 61 "CSSGradientValue.h", | 63 "CSSGradientValue.h", |
| 62 "CSSGridAutoRepeatValue.cpp", | 64 "CSSGridAutoRepeatValue.cpp", |
| 63 "CSSGridAutoRepeatValue.h", | 65 "CSSGridAutoRepeatValue.h", |
| 64 "CSSGridLineNamesValue.cpp", | 66 "CSSGridLineNamesValue.cpp", |
| 65 "CSSGridLineNamesValue.h", | 67 "CSSGridLineNamesValue.h", |
| (...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 "resolver/TransformBuilder.h", | 388 "resolver/TransformBuilder.h", |
| 387 "resolver/ViewportStyleResolver.cpp", | 389 "resolver/ViewportStyleResolver.cpp", |
| 388 "resolver/ViewportStyleResolver.h", | 390 "resolver/ViewportStyleResolver.h", |
| 389 ] | 391 ] |
| 390 | 392 |
| 391 configs += [ | 393 configs += [ |
| 392 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 394 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 393 "//build/config/compiler:no_size_t_to_int_warning", | 395 "//build/config/compiler:no_size_t_to_int_warning", |
| 394 ] | 396 ] |
| 395 } | 397 } |
| OLD | NEW |