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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 "CSSFunctionValue.cpp", | 56 "CSSFunctionValue.cpp", |
57 "CSSFunctionValue.h", | 57 "CSSFunctionValue.h", |
| 58 "CSSGlobalRuleSet.cpp", |
| 59 "CSSGlobalRuleSet.h", |
58 "CSSGradientValue.cpp", | 60 "CSSGradientValue.cpp", |
59 "CSSGradientValue.h", | 61 "CSSGradientValue.h", |
60 "CSSGridAutoRepeatValue.cpp", | 62 "CSSGridAutoRepeatValue.cpp", |
61 "CSSGridAutoRepeatValue.h", | 63 "CSSGridAutoRepeatValue.h", |
62 "CSSGridLineNamesValue.cpp", | 64 "CSSGridLineNamesValue.cpp", |
63 "CSSGridLineNamesValue.h", | 65 "CSSGridLineNamesValue.h", |
64 "CSSGridTemplateAreasValue.cpp", | 66 "CSSGridTemplateAreasValue.cpp", |
65 "CSSGridTemplateAreasValue.h", | 67 "CSSGridTemplateAreasValue.h", |
66 "CSSGroupingRule.cpp", | 68 "CSSGroupingRule.cpp", |
67 "CSSGroupingRule.h", | 69 "CSSGroupingRule.h", |
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
379 "resolver/TransformBuilder.h", | 381 "resolver/TransformBuilder.h", |
380 "resolver/ViewportStyleResolver.cpp", | 382 "resolver/ViewportStyleResolver.cpp", |
381 "resolver/ViewportStyleResolver.h", | 383 "resolver/ViewportStyleResolver.h", |
382 ] | 384 ] |
383 | 385 |
384 configs += [ | 386 configs += [ |
385 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 387 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
386 "//build/config/compiler:no_size_t_to_int_warning", | 388 "//build/config/compiler:no_size_t_to_int_warning", |
387 ] | 389 ] |
388 } | 390 } |
OLD | NEW |