| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 "ShadowData.h", | 45 "ShadowData.h", |
| 46 "ShadowList.cpp", | 46 "ShadowList.cpp", |
| 47 "ShadowList.h", | 47 "ShadowList.h", |
| 48 "StyleBackgroundData.cpp", | 48 "StyleBackgroundData.cpp", |
| 49 "StyleBackgroundData.h", | 49 "StyleBackgroundData.h", |
| 50 "StyleBoxData.cpp", | 50 "StyleBoxData.cpp", |
| 51 "StyleBoxData.h", | 51 "StyleBoxData.h", |
| 52 "StyleContentAlignmentData.h", | 52 "StyleContentAlignmentData.h", |
| 53 "StyleDeprecatedFlexibleBoxData.cpp", | 53 "StyleDeprecatedFlexibleBoxData.cpp", |
| 54 "StyleDeprecatedFlexibleBoxData.h", | 54 "StyleDeprecatedFlexibleBoxData.h", |
| 55 "StyleDifference.cpp", |
| 55 "StyleFetchedImage.cpp", | 56 "StyleFetchedImage.cpp", |
| 56 "StyleFetchedImage.h", | 57 "StyleFetchedImage.h", |
| 57 "StyleFetchedImageSet.cpp", | 58 "StyleFetchedImageSet.cpp", |
| 58 "StyleFetchedImageSet.h", | 59 "StyleFetchedImageSet.h", |
| 59 "StyleFilterData.cpp", | 60 "StyleFilterData.cpp", |
| 60 "StyleFilterData.h", | 61 "StyleFilterData.h", |
| 61 "StyleFlexibleBoxData.cpp", | 62 "StyleFlexibleBoxData.cpp", |
| 62 "StyleFlexibleBoxData.h", | 63 "StyleFlexibleBoxData.h", |
| 63 "StyleGeneratedImage.cpp", | 64 "StyleGeneratedImage.cpp", |
| 64 "StyleGeneratedImage.h", | 65 "StyleGeneratedImage.h", |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 "SVGComputedStyle.cpp", | 112 "SVGComputedStyle.cpp", |
| 112 "SVGComputedStyle.h", | 113 "SVGComputedStyle.h", |
| 113 "SVGComputedStyleDefs.cpp", | 114 "SVGComputedStyleDefs.cpp", |
| 114 "SVGComputedStyleDefs.h", | 115 "SVGComputedStyleDefs.h", |
| 115 ] | 116 ] |
| 116 configs += [ | 117 configs += [ |
| 117 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 118 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 118 "//build/config/compiler:no_size_t_to_int_warning", | 119 "//build/config/compiler:no_size_t_to_int_warning", |
| 119 ] | 120 ] |
| 120 } | 121 } |
| OLD | NEW |