| 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 14 matching lines...) Expand all Loading... |
| 25 "ClipPathOperation.h", | 25 "ClipPathOperation.h", |
| 26 "ComputedStyle.cpp", | 26 "ComputedStyle.cpp", |
| 27 "ComputedStyle.h", | 27 "ComputedStyle.h", |
| 28 "ComputedStyleConstants.h", | 28 "ComputedStyleConstants.h", |
| 29 "ContentData.cpp", | 29 "ContentData.cpp", |
| 30 "ContentData.h", | 30 "ContentData.h", |
| 31 "CounterContent.h", | 31 "CounterContent.h", |
| 32 "CounterDirectives.cpp", | 32 "CounterDirectives.cpp", |
| 33 "CounterDirectives.h", | 33 "CounterDirectives.h", |
| 34 "CursorData.h", | 34 "CursorData.h", |
| 35 "CursorList.h", |
| 35 "DataEquivalency.h", | 36 "DataEquivalency.h", |
| 36 "DataPersistent.h", | 37 "DataPersistent.h", |
| 37 "DataRef.h", | 38 "DataRef.h", |
| 38 "FillLayer.cpp", | 39 "FillLayer.cpp", |
| 39 "FillLayer.h", | 40 "FillLayer.h", |
| 40 "FilterOperation.cpp", | 41 "FilterOperation.cpp", |
| 41 "FilterOperation.h", | 42 "FilterOperation.h", |
| 42 "FilterOperations.cpp", | 43 "FilterOperations.cpp", |
| 43 "FilterOperations.h", | 44 "FilterOperations.h", |
| 44 "GridArea.h", | 45 "GridArea.h", |
| (...skipping 73 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 |