| 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 "BasicShapes.cpp", | 12 "BasicShapes.cpp", |
| 13 "BorderEdge.cpp", | 13 "BorderEdge.cpp", |
| 14 "BorderEdge.h", | 14 "BorderEdge.h", |
| 15 "BorderImageLength.h", | 15 "BorderImageLength.h", |
| 16 "BorderImageLengthBox.h", | 16 "BorderImageLengthBox.h", |
| 17 "CachedUAStyle.h", | 17 "CachedUAStyle.h", |
| 18 "ClipPathOperation.cpp", |
| 18 "ClipPathOperation.h", | 19 "ClipPathOperation.h", |
| 19 "ComputedStyle.cpp", | 20 "ComputedStyle.cpp", |
| 20 "ComputedStyle.h", | 21 "ComputedStyle.h", |
| 21 "ContentData.cpp", | 22 "ContentData.cpp", |
| 22 "CounterDirectives.cpp", | 23 "CounterDirectives.cpp", |
| 23 "DataEquivalency.h", | 24 "DataEquivalency.h", |
| 24 "DataPersistent.h", | 25 "DataPersistent.h", |
| 25 "DataRef.h", | 26 "DataRef.h", |
| 26 "FillLayer.cpp", | 27 "FillLayer.cpp", |
| 27 "FilterOperation.cpp", | 28 "FilterOperation.cpp", |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 blink_core_sources("svg") { | 84 blink_core_sources("svg") { |
| 84 sources = [ | 85 sources = [ |
| 85 "SVGComputedStyle.cpp", | 86 "SVGComputedStyle.cpp", |
| 86 "SVGComputedStyleDefs.cpp", | 87 "SVGComputedStyleDefs.cpp", |
| 87 ] | 88 ] |
| 88 configs += [ | 89 configs += [ |
| 89 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 90 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 90 "//build/config/compiler:no_size_t_to_int_warning", | 91 "//build/config/compiler:no_size_t_to_int_warning", |
| 91 ] | 92 ] |
| 92 } | 93 } |
| OLD | NEW |