| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 "StylePath.h", | 97 "StylePath.h", |
| 98 "StylePendingImage.h", | 98 "StylePendingImage.h", |
| 99 "StyleRareInheritedData.cpp", | 99 "StyleRareInheritedData.cpp", |
| 100 "StyleRareInheritedData.h", | 100 "StyleRareInheritedData.h", |
| 101 "StyleRareNonInheritedData.cpp", | 101 "StyleRareNonInheritedData.cpp", |
| 102 "StyleRareNonInheritedData.h", | 102 "StyleRareNonInheritedData.h", |
| 103 "StyleReflection.h", | 103 "StyleReflection.h", |
| 104 "StyleScrollSnapData.cpp", | 104 "StyleScrollSnapData.cpp", |
| 105 "StyleScrollSnapData.h", | 105 "StyleScrollSnapData.h", |
| 106 "StyleSelfAlignmentData.h", | 106 "StyleSelfAlignmentData.h", |
| 107 "StyleSurroundData.cpp", | |
| 108 "StyleSurroundData.h", | |
| 109 "StyleTransformData.cpp", | 107 "StyleTransformData.cpp", |
| 110 "StyleTransformData.h", | 108 "StyleTransformData.h", |
| 111 "StyleVisualData.cpp", | 109 "StyleVisualData.cpp", |
| 112 "StyleVisualData.h", | 110 "StyleVisualData.h", |
| 113 "StyleWillChangeData.cpp", | 111 "StyleWillChangeData.cpp", |
| 114 "StyleWillChangeData.h", | 112 "StyleWillChangeData.h", |
| 115 "TextSizeAdjust.h", | 113 "TextSizeAdjust.h", |
| 116 ] | 114 ] |
| 117 configs += [ | 115 configs += [ |
| 118 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 116 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 119 "//build/config/compiler:no_size_t_to_int_warning", | 117 "//build/config/compiler:no_size_t_to_int_warning", |
| 120 ] | 118 ] |
| 121 } | 119 } |
| 122 | 120 |
| 123 blink_core_sources("svg_style") { | 121 blink_core_sources("svg_style") { |
| 124 sources = [ | 122 sources = [ |
| 125 "SVGComputedStyle.cpp", | 123 "SVGComputedStyle.cpp", |
| 126 "SVGComputedStyle.h", | 124 "SVGComputedStyle.h", |
| 127 "SVGComputedStyleDefs.cpp", | 125 "SVGComputedStyleDefs.cpp", |
| 128 "SVGComputedStyleDefs.h", | 126 "SVGComputedStyleDefs.h", |
| 129 ] | 127 ] |
| 130 configs += [ | 128 configs += [ |
| 131 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 129 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 132 "//build/config/compiler:no_size_t_to_int_warning", | 130 "//build/config/compiler:no_size_t_to_int_warning", |
| 133 ] | 131 ] |
| 134 } | 132 } |
| OLD | NEW |