Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(297)

Side by Side Diff: third_party/WebKit/Source/core/style/BUILD.gn

Issue 2884553002: Move AppliedTextDecorationList to its own file. (Closed)
Patch Set: Reland Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 = [
11 "AppliedTextDecoration.cpp", 11 "AppliedTextDecoration.cpp",
12 "AppliedTextDecoration.h", 12 "AppliedTextDecoration.h",
13 "AppliedTextDecorationList.h",
13 "BasicShapes.cpp", 14 "BasicShapes.cpp",
14 "BasicShapes.h", 15 "BasicShapes.h",
15 "BorderData.h", 16 "BorderData.h",
16 "BorderEdge.cpp", 17 "BorderEdge.cpp",
17 "BorderEdge.h", 18 "BorderEdge.h",
18 "BorderImageLength.h", 19 "BorderImageLength.h",
19 "BorderImageLengthBox.h", 20 "BorderImageLengthBox.h",
20 "BorderStyle.h", 21 "BorderStyle.h",
21 "BorderValue.h", 22 "BorderValue.h",
22 "CachedUAStyle.h", 23 "CachedUAStyle.h",
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 "SVGComputedStyle.cpp", 118 "SVGComputedStyle.cpp",
118 "SVGComputedStyle.h", 119 "SVGComputedStyle.h",
119 "SVGComputedStyleDefs.cpp", 120 "SVGComputedStyleDefs.cpp",
120 "SVGComputedStyleDefs.h", 121 "SVGComputedStyleDefs.h",
121 ] 122 ]
122 configs += [ 123 configs += [
123 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 124 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
124 "//build/config/compiler:no_size_t_to_int_warning", 125 "//build/config/compiler:no_size_t_to_int_warning",
125 ] 126 ]
126 } 127 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698