| 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 "CSSInheritedValue.cpp", | 87 "CSSInheritedValue.cpp", |
| 88 "CSSInheritedValue.h", | 88 "CSSInheritedValue.h", |
| 89 "CSSInitialValue.cpp", | 89 "CSSInitialValue.cpp", |
| 90 "CSSInitialValue.h", | 90 "CSSInitialValue.h", |
| 91 "CSSKeyframeRule.cpp", | 91 "CSSKeyframeRule.cpp", |
| 92 "CSSKeyframeRule.h", | 92 "CSSKeyframeRule.h", |
| 93 "CSSKeyframesRule.cpp", | 93 "CSSKeyframesRule.cpp", |
| 94 "CSSKeyframesRule.h", | 94 "CSSKeyframesRule.h", |
| 95 "CSSMarkup.cpp", | 95 "CSSMarkup.cpp", |
| 96 "CSSMarkup.h", | 96 "CSSMarkup.h", |
| 97 "CSSMatrix.cpp", | |
| 98 "CSSMatrix.h", | |
| 99 "CSSMediaRule.cpp", | 97 "CSSMediaRule.cpp", |
| 100 "CSSMediaRule.h", | 98 "CSSMediaRule.h", |
| 101 "CSSNamespaceRule.cpp", | 99 "CSSNamespaceRule.cpp", |
| 102 "CSSNamespaceRule.h", | 100 "CSSNamespaceRule.h", |
| 103 "CSSPageRule.cpp", | 101 "CSSPageRule.cpp", |
| 104 "CSSPageRule.h", | 102 "CSSPageRule.h", |
| 105 "CSSPaintImageGenerator.cpp", | 103 "CSSPaintImageGenerator.cpp", |
| 106 "CSSPaintImageGenerator.h", | 104 "CSSPaintImageGenerator.h", |
| 107 "CSSPaintValue.cpp", | 105 "CSSPaintValue.cpp", |
| 108 "CSSPaintValue.h", | 106 "CSSPaintValue.h", |
| (...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 564 "resolver/TransformBuilder.h", | 562 "resolver/TransformBuilder.h", |
| 565 "resolver/ViewportStyleResolver.cpp", | 563 "resolver/ViewportStyleResolver.cpp", |
| 566 "resolver/ViewportStyleResolver.h", | 564 "resolver/ViewportStyleResolver.h", |
| 567 ] | 565 ] |
| 568 | 566 |
| 569 configs += [ | 567 configs += [ |
| 570 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 568 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 571 "//build/config/compiler:no_size_t_to_int_warning", | 569 "//build/config/compiler:no_size_t_to_int_warning", |
| 572 ] | 570 ] |
| 573 } | 571 } |
| OLD | NEW |