| 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 30 matching lines...) Expand all Loading... |
| 41 "FilterOperation.h", | 41 "FilterOperation.h", |
| 42 "FilterOperations.cpp", | 42 "FilterOperations.cpp", |
| 43 "FilterOperations.h", | 43 "FilterOperations.h", |
| 44 "GridArea.h", | 44 "GridArea.h", |
| 45 "GridLength.h", | 45 "GridLength.h", |
| 46 "GridPosition.h", | 46 "GridPosition.h", |
| 47 "GridPositionsResolver.cpp", | 47 "GridPositionsResolver.cpp", |
| 48 "GridPositionsResolver.h", | 48 "GridPositionsResolver.h", |
| 49 "GridTrackSize.h", | 49 "GridTrackSize.h", |
| 50 "LineClampValue.h", | 50 "LineClampValue.h", |
| 51 "MemberCopy.h", |
| 51 "NinePieceImage.cpp", | 52 "NinePieceImage.cpp", |
| 52 "NinePieceImage.h", | 53 "NinePieceImage.h", |
| 53 "OutlineValue.h", | 54 "OutlineValue.h", |
| 54 "PaintImages.h", | 55 "PaintImages.h", |
| 55 "QuotesData.cpp", | 56 "QuotesData.cpp", |
| 56 "QuotesData.h", | 57 "QuotesData.h", |
| 57 "ScrollSnapPoints.h", | 58 "ScrollSnapPoints.h", |
| 58 "ShadowData.cpp", | 59 "ShadowData.cpp", |
| 59 "ShadowData.h", | 60 "ShadowData.h", |
| 60 "ShadowList.cpp", | 61 "ShadowList.cpp", |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 "SVGComputedStyle.cpp", | 119 "SVGComputedStyle.cpp", |
| 119 "SVGComputedStyle.h", | 120 "SVGComputedStyle.h", |
| 120 "SVGComputedStyleDefs.cpp", | 121 "SVGComputedStyleDefs.cpp", |
| 121 "SVGComputedStyleDefs.h", | 122 "SVGComputedStyleDefs.h", |
| 122 ] | 123 ] |
| 123 configs += [ | 124 configs += [ |
| 124 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 125 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 125 "//build/config/compiler:no_size_t_to_int_warning", | 126 "//build/config/compiler:no_size_t_to_int_warning", |
| 126 ] | 127 ] |
| 127 } | 128 } |
| OLD | NEW |