| 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.h", | 18 "ClipPathOperation.h", |
| 19 "ComputedStyle.cpp", | 19 "ComputedStyle.cpp", |
| 20 "ComputedStyle.h", | 20 "ComputedStyle.h", |
| 21 "ContentData.cpp", | 21 "ContentData.cpp", |
| 22 "CounterDirectives.cpp", | 22 "CounterDirectives.cpp", |
| 23 "DataEquivalency.h", | 23 "DataEquivalency.h", |
| 24 "DataPersistent.h", | 24 "DataPersistent.h", |
| 25 "DataRef.h", | 25 "DataRef.h", |
| 26 "FillLayer.cpp", | 26 "FillLayer.cpp", |
| 27 "FilterOperation.cpp", |
| 28 "FilterOperation.h", |
| 29 "FilterOperations.cpp", |
| 30 "FilterOperations.h", |
| 27 "GridArea.h", | 31 "GridArea.h", |
| 28 "GridPositionsResolver.cpp", | 32 "GridPositionsResolver.cpp", |
| 29 "GridPositionsResolver.h", | 33 "GridPositionsResolver.h", |
| 30 "NinePieceImage.cpp", | 34 "NinePieceImage.cpp", |
| 31 "QuotesData.cpp", | 35 "QuotesData.cpp", |
| 32 "QuotesData.h", | 36 "QuotesData.h", |
| 33 "ShadowData.cpp", | 37 "ShadowData.cpp", |
| 34 "ShadowData.h", | 38 "ShadowData.h", |
| 35 "ShadowList.cpp", | 39 "ShadowList.cpp", |
| 36 "ShadowList.h", | 40 "ShadowList.h", |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 blink_core_sources("svg") { | 81 blink_core_sources("svg") { |
| 78 sources = [ | 82 sources = [ |
| 79 "SVGComputedStyle.cpp", | 83 "SVGComputedStyle.cpp", |
| 80 "SVGComputedStyleDefs.cpp", | 84 "SVGComputedStyleDefs.cpp", |
| 81 ] | 85 ] |
| 82 configs += [ | 86 configs += [ |
| 83 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 87 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 84 "//build/config/compiler:no_size_t_to_int_warning", | 88 "//build/config/compiler:no_size_t_to_int_warning", |
| 85 ] | 89 ] |
| 86 } | 90 } |
| OLD | NEW |