| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 "StyleFlexibleBoxData.cpp", | 70 "StyleFlexibleBoxData.cpp", |
| 71 "StyleFlexibleBoxData.h", | 71 "StyleFlexibleBoxData.h", |
| 72 "StyleGeneratedImage.cpp", | 72 "StyleGeneratedImage.cpp", |
| 73 "StyleGeneratedImage.h", | 73 "StyleGeneratedImage.h", |
| 74 "StyleGridData.cpp", | 74 "StyleGridData.cpp", |
| 75 "StyleGridData.h", | 75 "StyleGridData.h", |
| 76 "StyleGridItemData.cpp", | 76 "StyleGridItemData.cpp", |
| 77 "StyleGridItemData.h", | 77 "StyleGridItemData.h", |
| 78 "StyleImage.cpp", | 78 "StyleImage.cpp", |
| 79 "StyleImage.h", | 79 "StyleImage.h", |
| 80 "StyleInheritedData.cpp", | |
| 81 "StyleInheritedData.h", | 80 "StyleInheritedData.h", |
| 82 "StyleInheritedVariables.cpp", | 81 "StyleInheritedVariables.cpp", |
| 83 "StyleInheritedVariables.h", | 82 "StyleInheritedVariables.h", |
| 84 "StyleInvalidImage.h", | 83 "StyleInvalidImage.h", |
| 85 "StyleMotionData.cpp", | 84 "StyleMotionData.cpp", |
| 86 "StyleMotionData.h", | 85 "StyleMotionData.h", |
| 87 "StyleMultiColData.cpp", | 86 "StyleMultiColData.cpp", |
| 88 "StyleMultiColData.h", | 87 "StyleMultiColData.h", |
| 89 "StyleNonInheritedVariables.cpp", | 88 "StyleNonInheritedVariables.cpp", |
| 90 "StyleNonInheritedVariables.h", | 89 "StyleNonInheritedVariables.h", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 117 "SVGComputedStyle.cpp", | 116 "SVGComputedStyle.cpp", |
| 118 "SVGComputedStyle.h", | 117 "SVGComputedStyle.h", |
| 119 "SVGComputedStyleDefs.cpp", | 118 "SVGComputedStyleDefs.cpp", |
| 120 "SVGComputedStyleDefs.h", | 119 "SVGComputedStyleDefs.h", |
| 121 ] | 120 ] |
| 122 configs += [ | 121 configs += [ |
| 123 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 122 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 124 "//build/config/compiler:no_size_t_to_int_warning", | 123 "//build/config/compiler:no_size_t_to_int_warning", |
| 125 ] | 124 ] |
| 126 } | 125 } |
| OLD | NEW |