| 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 "StyleWillChangeData.cpp", | 112 "StyleWillChangeData.cpp", |
| 113 "StyleWillChangeData.h", | 113 "StyleWillChangeData.h", |
| 114 "TextSizeAdjust.h", | 114 "TextSizeAdjust.h", |
| 115 ] | 115 ] |
| 116 configs += [ | 116 configs += [ |
| 117 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 117 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 118 "//build/config/compiler:no_size_t_to_int_warning", | 118 "//build/config/compiler:no_size_t_to_int_warning", |
| 119 ] | 119 ] |
| 120 } | 120 } |
| 121 | 121 |
| 122 blink_core_sources("svg") { | 122 blink_core_sources("svg_style") { |
| 123 sources = [ | 123 sources = [ |
| 124 "SVGComputedStyle.cpp", | 124 "SVGComputedStyle.cpp", |
| 125 "SVGComputedStyle.h", | 125 "SVGComputedStyle.h", |
| 126 "SVGComputedStyleDefs.cpp", | 126 "SVGComputedStyleDefs.cpp", |
| 127 "SVGComputedStyleDefs.h", | 127 "SVGComputedStyleDefs.h", |
| 128 ] | 128 ] |
| 129 configs += [ | 129 configs += [ |
| 130 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 130 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 131 "//build/config/compiler:no_size_t_to_int_warning", | 131 "//build/config/compiler:no_size_t_to_int_warning", |
| 132 ] | 132 ] |
| 133 } | 133 } |
| OLD | NEW |