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

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

Issue 2869043002: Store border-*-color on SurroundData in ComputedStyle not BorderColorAndStyle (Closed)
Patch Set: BorderColorVisuallyEquals calls BorderColorEquals 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 "BasicShapes.cpp", 13 "BasicShapes.cpp",
14 "BasicShapes.h", 14 "BasicShapes.h",
15 "BorderColorAndStyle.h",
16 "BorderData.h", 15 "BorderData.h",
17 "BorderEdge.cpp", 16 "BorderEdge.cpp",
18 "BorderEdge.h", 17 "BorderEdge.h",
19 "BorderImageLength.h", 18 "BorderImageLength.h",
20 "BorderImageLengthBox.h", 19 "BorderImageLengthBox.h",
20 "BorderStyle.h",
21 "BorderValue.h", 21 "BorderValue.h",
22 "CachedUAStyle.h", 22 "CachedUAStyle.h",
23 "ClipPathOperation.cpp", 23 "ClipPathOperation.cpp",
24 "ClipPathOperation.h", 24 "ClipPathOperation.h",
25 "ComputedStyle.cpp", 25 "ComputedStyle.cpp",
26 "ComputedStyle.h", 26 "ComputedStyle.h",
27 "ComputedStyleConstants.h", 27 "ComputedStyleConstants.h",
28 "ContentData.cpp", 28 "ContentData.cpp",
29 "ContentData.h", 29 "ContentData.h",
30 "CounterContent.h", 30 "CounterContent.h",
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 "SVGComputedStyle.cpp", 119 "SVGComputedStyle.cpp",
120 "SVGComputedStyle.h", 120 "SVGComputedStyle.h",
121 "SVGComputedStyleDefs.cpp", 121 "SVGComputedStyleDefs.cpp",
122 "SVGComputedStyleDefs.h", 122 "SVGComputedStyleDefs.h",
123 ] 123 ]
124 configs += [ 124 configs += [
125 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 125 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
126 "//build/config/compiler:no_size_t_to_int_warning", 126 "//build/config/compiler:no_size_t_to_int_warning",
127 ] 127 ]
128 } 128 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698