| 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("rendering") { | 7 blink_core_sources("rendering") { |
| 8 visibility = [ "//third_party/WebKit/Source/core/*" ] | 8 visibility = [ "//third_party/WebKit/Source/core/*" ] |
| 9 | 9 |
| 10 sources = [ | 10 sources = [ |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 "StyleMotionData.cpp", | 89 "StyleMotionData.cpp", |
| 90 "StyleMotionData.h", | 90 "StyleMotionData.h", |
| 91 "StyleMultiColData.cpp", | 91 "StyleMultiColData.cpp", |
| 92 "StyleMultiColData.h", | 92 "StyleMultiColData.h", |
| 93 "StyleNonInheritedVariables.cpp", | 93 "StyleNonInheritedVariables.cpp", |
| 94 "StyleNonInheritedVariables.h", | 94 "StyleNonInheritedVariables.h", |
| 95 "StyleOffsetRotation.h", | 95 "StyleOffsetRotation.h", |
| 96 "StylePath.cpp", | 96 "StylePath.cpp", |
| 97 "StylePath.h", | 97 "StylePath.h", |
| 98 "StylePendingImage.h", | 98 "StylePendingImage.h", |
| 99 "StyleRareNonInheritedData.cpp", | |
| 100 "StyleRareNonInheritedData.h", | |
| 101 "StyleRay.cpp", | 99 "StyleRay.cpp", |
| 102 "StyleRay.h", | 100 "StyleRay.h", |
| 103 "StyleReflection.h", | 101 "StyleReflection.h", |
| 104 "StyleScrollSnapData.cpp", | 102 "StyleScrollSnapData.cpp", |
| 105 "StyleScrollSnapData.h", | 103 "StyleScrollSnapData.h", |
| 106 "StyleSelfAlignmentData.h", | 104 "StyleSelfAlignmentData.h", |
| 107 "StyleTransformData.cpp", | 105 "StyleTransformData.cpp", |
| 108 "StyleTransformData.h", | 106 "StyleTransformData.h", |
| 109 "StyleWillChangeData.cpp", | 107 "StyleWillChangeData.cpp", |
| 110 "StyleWillChangeData.h", | 108 "StyleWillChangeData.h", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 121 "SVGComputedStyle.cpp", | 119 "SVGComputedStyle.cpp", |
| 122 "SVGComputedStyle.h", | 120 "SVGComputedStyle.h", |
| 123 "SVGComputedStyleDefs.cpp", | 121 "SVGComputedStyleDefs.cpp", |
| 124 "SVGComputedStyleDefs.h", | 122 "SVGComputedStyleDefs.h", |
| 125 ] | 123 ] |
| 126 configs += [ | 124 configs += [ |
| 127 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 125 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 128 "//build/config/compiler:no_size_t_to_int_warning", | 126 "//build/config/compiler:no_size_t_to_int_warning", |
| 129 ] | 127 ] |
| 130 } | 128 } |
| OLD | NEW |