| 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", | |
| 12 "BasicShapes.cpp", | |
| 13 "BorderEdge.cpp", | |
| 14 "BorderEdge.h", | |
| 15 "BorderImageLength.h", | |
| 16 "BorderImageLengthBox.h", | |
| 17 "CachedUAStyle.h", | |
| 18 "ClipPathOperation.h", | |
| 19 "ComputedStyle.cpp", | 11 "ComputedStyle.cpp", |
| 20 "ComputedStyle.h", | 12 "ComputedStyle.h", |
| 21 "ContentData.cpp", | 13 |
| 22 "CounterDirectives.cpp", | |
| 23 "DataEquivalency.h", | |
| 24 "DataPersistent.h", | |
| 25 "DataRef.h", | |
| 26 "FillLayer.cpp", | |
| 27 "GridArea.h", | |
| 28 "GridPositionsResolver.cpp", | |
| 29 "GridPositionsResolver.h", | |
| 30 "NinePieceImage.cpp", | |
| 31 "QuotesData.cpp", | |
| 32 "QuotesData.h", | |
| 33 "ShadowData.cpp", | |
| 34 "ShadowData.h", | |
| 35 "ShadowList.cpp", | |
| 36 "ShadowList.h", | |
| 37 "StyleBackgroundData.cpp", | |
| 38 "StyleBoxData.cpp", | |
| 39 "StyleContentAlignmentData.h", | |
| 40 "StyleDeprecatedFlexibleBoxData.cpp", | |
| 41 "StyleFetchedImage.cpp", | |
| 42 "StyleFetchedImageSet.cpp", | |
| 43 "StyleFilterData.cpp", | |
| 44 "StyleFlexibleBoxData.cpp", | |
| 45 "StyleGeneratedImage.cpp", | |
| 46 "StyleGridData.cpp", | |
| 47 "StyleGridItemData.cpp", | |
| 48 "StyleImage.cpp", | |
| 49 "StyleInheritedData.cpp", | 14 "StyleInheritedData.cpp", |
| 50 "StyleInvalidImage.h", | |
| 51 "StyleMotionData.cpp", | |
| 52 "StyleMotionData.h", | |
| 53 "StyleMotionRotation.h", | |
| 54 "StyleMultiColData.cpp", | |
| 55 "StylePath.cpp", | |
| 56 "StylePath.h", | |
| 57 "StylePendingImage.h", | |
| 58 "StyleRareInheritedData.cpp", | 15 "StyleRareInheritedData.cpp", |
| 59 "StyleRareNonInheritedData.cpp", | 16 "StyleRareNonInheritedData.cpp", |
| 60 "StyleScrollSnapData.cpp", | |
| 61 "StyleScrollSnapData.h", | |
| 62 "StyleSelfAlignmentData.h", | |
| 63 "StyleSurroundData.cpp", | |
| 64 "StyleTransformData.cpp", | |
| 65 "StyleVariableData.cpp", | |
| 66 "StyleVariableData.h", | |
| 67 "StyleVisualData.cpp", | |
| 68 "StyleWillChangeData.cpp", | |
| 69 "TextSizeAdjust.h", | |
| 70 ] | 17 ] |
| 71 configs += [ | 18 configs += [ |
| 72 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 19 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 73 "//build/config/compiler:no_size_t_to_int_warning", | 20 "//build/config/compiler:no_size_t_to_int_warning", |
| 74 ] | 21 ] |
| 75 } | 22 } |
| 76 | 23 |
| 77 blink_core_sources("svg") { | 24 blink_core_sources("svg") { |
| 78 sources = [ | 25 sources = [ |
| 79 "SVGComputedStyle.cpp", | 26 "SVGComputedStyle.cpp", |
| 80 "SVGComputedStyleDefs.cpp", | 27 "SVGComputedStyleDefs.cpp", |
| 81 ] | 28 ] |
| 82 configs += [ | 29 configs += [ |
| 83 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 30 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 84 "//build/config/compiler:no_size_t_to_int_warning", | 31 "//build/config/compiler:no_size_t_to_int_warning", |
| 85 ] | 32 ] |
| 86 } | 33 } |
| OLD | NEW |