| 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 25 matching lines...) Expand all Loading... |
| 36 "QuotesData.cpp", | 36 "QuotesData.cpp", |
| 37 "QuotesData.h", | 37 "QuotesData.h", |
| 38 "ShadowData.cpp", | 38 "ShadowData.cpp", |
| 39 "ShadowData.h", | 39 "ShadowData.h", |
| 40 "ShadowList.cpp", | 40 "ShadowList.cpp", |
| 41 "ShadowList.h", | 41 "ShadowList.h", |
| 42 "StyleBackgroundData.cpp", | 42 "StyleBackgroundData.cpp", |
| 43 "StyleBoxData.cpp", | 43 "StyleBoxData.cpp", |
| 44 "StyleContentAlignmentData.h", | 44 "StyleContentAlignmentData.h", |
| 45 "StyleDeprecatedFlexibleBoxData.cpp", | 45 "StyleDeprecatedFlexibleBoxData.cpp", |
| 46 "StyleDifference.cpp", |
| 46 "StyleFetchedImage.cpp", | 47 "StyleFetchedImage.cpp", |
| 47 "StyleFetchedImageSet.cpp", | 48 "StyleFetchedImageSet.cpp", |
| 48 "StyleFilterData.cpp", | 49 "StyleFilterData.cpp", |
| 49 "StyleFlexibleBoxData.cpp", | 50 "StyleFlexibleBoxData.cpp", |
| 50 "StyleGeneratedImage.cpp", | 51 "StyleGeneratedImage.cpp", |
| 51 "StyleGridData.cpp", | 52 "StyleGridData.cpp", |
| 52 "StyleGridItemData.cpp", | 53 "StyleGridItemData.cpp", |
| 53 "StyleImage.cpp", | 54 "StyleImage.cpp", |
| 54 "StyleInheritedData.cpp", | 55 "StyleInheritedData.cpp", |
| 55 "StyleInheritedVariables.cpp", | 56 "StyleInheritedVariables.cpp", |
| (...skipping 28 matching lines...) Expand all Loading... |
| 84 blink_core_sources("svg") { | 85 blink_core_sources("svg") { |
| 85 sources = [ | 86 sources = [ |
| 86 "SVGComputedStyle.cpp", | 87 "SVGComputedStyle.cpp", |
| 87 "SVGComputedStyleDefs.cpp", | 88 "SVGComputedStyleDefs.cpp", |
| 88 ] | 89 ] |
| 89 configs += [ | 90 configs += [ |
| 90 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 91 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 91 "//build/config/compiler:no_size_t_to_int_warning", | 92 "//build/config/compiler:no_size_t_to_int_warning", |
| 92 ] | 93 ] |
| 93 } | 94 } |
| OLD | NEW |