| 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 = [ |
| 11 "AppliedTextDecoration.cpp", | 11 "AppliedTextDecoration.cpp", |
| 12 "AppliedTextDecoration.h", | 12 "AppliedTextDecoration.h", |
| 13 "BasicShapes.cpp", | 13 "BasicShapes.cpp", |
| 14 "BasicShapes.h", | 14 "BasicShapes.h", |
| 15 "BorderData.h", | 15 "BorderData.h", |
| 16 "BorderEdge.cpp", | 16 "BorderEdge.cpp", |
| 17 "BorderEdge.h", | 17 "BorderEdge.h", |
| 18 "BorderImageLength.h", | 18 "BorderImageLength.h", |
| 19 "BorderImageLengthBox.h", | 19 "BorderImageLengthBox.h", |
| 20 "BorderValue.h", | 20 "BorderValue.h", |
| 21 "CachedUAStyle.h", | 21 "CachedUAStyle.h", |
| 22 "ClipPathOperation.cpp", | 22 "ClipPathOperation.cpp", |
| 23 "ClipPathOperation.h", | 23 "ClipPathOperation.h", |
| 24 "CollapsedBorderValue.h", | |
| 25 "ComputedStyle.cpp", | 24 "ComputedStyle.cpp", |
| 26 "ComputedStyle.h", | 25 "ComputedStyle.h", |
| 27 "ComputedStyleConstants.h", | 26 "ComputedStyleConstants.h", |
| 28 "ContentData.cpp", | 27 "ContentData.cpp", |
| 29 "ContentData.h", | 28 "ContentData.h", |
| 30 "CounterContent.h", | 29 "CounterContent.h", |
| 31 "CounterDirectives.cpp", | 30 "CounterDirectives.cpp", |
| 32 "CounterDirectives.h", | 31 "CounterDirectives.h", |
| 33 "CursorData.h", | 32 "CursorData.h", |
| 34 "DataEquivalency.h", | 33 "DataEquivalency.h", |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 "SVGComputedStyle.cpp", | 122 "SVGComputedStyle.cpp", |
| 124 "SVGComputedStyle.h", | 123 "SVGComputedStyle.h", |
| 125 "SVGComputedStyleDefs.cpp", | 124 "SVGComputedStyleDefs.cpp", |
| 126 "SVGComputedStyleDefs.h", | 125 "SVGComputedStyleDefs.h", |
| 127 ] | 126 ] |
| 128 configs += [ | 127 configs += [ |
| 129 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 128 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 130 "//build/config/compiler:no_size_t_to_int_warning", | 129 "//build/config/compiler:no_size_t_to_int_warning", |
| 131 ] | 130 ] |
| 132 } | 131 } |
| OLD | NEW |