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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 "StyleFilterData.cpp", | 43 "StyleFilterData.cpp", |
44 "StyleFlexibleBoxData.cpp", | 44 "StyleFlexibleBoxData.cpp", |
45 "StyleGeneratedImage.cpp", | 45 "StyleGeneratedImage.cpp", |
46 "StyleGridData.cpp", | 46 "StyleGridData.cpp", |
47 "StyleGridItemData.cpp", | 47 "StyleGridItemData.cpp", |
48 "StyleImage.cpp", | 48 "StyleImage.cpp", |
49 "StyleInheritedData.cpp", | 49 "StyleInheritedData.cpp", |
50 "StyleInvalidImage.h", | 50 "StyleInvalidImage.h", |
51 "StyleMotionData.cpp", | 51 "StyleMotionData.cpp", |
52 "StyleMotionData.h", | 52 "StyleMotionData.h", |
53 "StyleMotionRotation.h", | |
54 "StyleMultiColData.cpp", | 53 "StyleMultiColData.cpp", |
| 54 "StyleOffsetRotation.h", |
55 "StylePath.cpp", | 55 "StylePath.cpp", |
56 "StylePath.h", | 56 "StylePath.h", |
57 "StylePendingImage.h", | 57 "StylePendingImage.h", |
58 "StyleRareInheritedData.cpp", | 58 "StyleRareInheritedData.cpp", |
59 "StyleRareNonInheritedData.cpp", | 59 "StyleRareNonInheritedData.cpp", |
60 "StyleScrollSnapData.cpp", | 60 "StyleScrollSnapData.cpp", |
61 "StyleScrollSnapData.h", | 61 "StyleScrollSnapData.h", |
62 "StyleSelfAlignmentData.h", | 62 "StyleSelfAlignmentData.h", |
63 "StyleSurroundData.cpp", | 63 "StyleSurroundData.cpp", |
64 "StyleTransformData.cpp", | 64 "StyleTransformData.cpp", |
(...skipping 12 matching lines...) Expand all Loading... |
77 blink_core_sources("svg") { | 77 blink_core_sources("svg") { |
78 sources = [ | 78 sources = [ |
79 "SVGComputedStyle.cpp", | 79 "SVGComputedStyle.cpp", |
80 "SVGComputedStyleDefs.cpp", | 80 "SVGComputedStyleDefs.cpp", |
81 ] | 81 ] |
82 configs += [ | 82 configs += [ |
83 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 83 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
84 "//build/config/compiler:no_size_t_to_int_warning", | 84 "//build/config/compiler:no_size_t_to_int_warning", |
85 ] | 85 ] |
86 } | 86 } |
OLD | NEW |