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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 "CSSInheritedValue.cpp", | 79 "CSSInheritedValue.cpp", |
80 "CSSInheritedValue.h", | 80 "CSSInheritedValue.h", |
81 "CSSInitialValue.cpp", | 81 "CSSInitialValue.cpp", |
82 "CSSInitialValue.h", | 82 "CSSInitialValue.h", |
83 "CSSKeyframeRule.cpp", | 83 "CSSKeyframeRule.cpp", |
84 "CSSKeyframeRule.h", | 84 "CSSKeyframeRule.h", |
85 "CSSKeyframesRule.cpp", | 85 "CSSKeyframesRule.cpp", |
86 "CSSKeyframesRule.h", | 86 "CSSKeyframesRule.h", |
87 "CSSMarkup.cpp", | 87 "CSSMarkup.cpp", |
88 "CSSMarkup.h", | 88 "CSSMarkup.h", |
89 "CSSMatrix.cpp", | |
90 "CSSMatrix.h", | |
91 "CSSMediaRule.cpp", | 89 "CSSMediaRule.cpp", |
92 "CSSMediaRule.h", | 90 "CSSMediaRule.h", |
93 "CSSNamespaceRule.cpp", | 91 "CSSNamespaceRule.cpp", |
94 "CSSNamespaceRule.h", | 92 "CSSNamespaceRule.h", |
95 "CSSPageRule.cpp", | 93 "CSSPageRule.cpp", |
96 "CSSPageRule.h", | 94 "CSSPageRule.h", |
97 "CSSPaintImageGenerator.cpp", | 95 "CSSPaintImageGenerator.cpp", |
98 "CSSPaintImageGenerator.h", | 96 "CSSPaintImageGenerator.h", |
99 "CSSPaintValue.cpp", | 97 "CSSPaintValue.cpp", |
100 "CSSPaintValue.h", | 98 "CSSPaintValue.h", |
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
511 "resolver/TransformBuilder.h", | 509 "resolver/TransformBuilder.h", |
512 "resolver/ViewportStyleResolver.cpp", | 510 "resolver/ViewportStyleResolver.cpp", |
513 "resolver/ViewportStyleResolver.h", | 511 "resolver/ViewportStyleResolver.h", |
514 ] | 512 ] |
515 | 513 |
516 configs += [ | 514 configs += [ |
517 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 515 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
518 "//build/config/compiler:no_size_t_to_int_warning", | 516 "//build/config/compiler:no_size_t_to_int_warning", |
519 ] | 517 ] |
520 } | 518 } |
OLD | NEW |