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

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

Issue 2841453002: Generate StyleVisualData in ComputedStyleBase. (Closed)
Patch Set: Rebase 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 = [
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 "StyleRareInheritedData.cpp", 97 "StyleRareInheritedData.cpp",
98 "StyleRareInheritedData.h", 98 "StyleRareInheritedData.h",
99 "StyleRareNonInheritedData.cpp", 99 "StyleRareNonInheritedData.cpp",
100 "StyleRareNonInheritedData.h", 100 "StyleRareNonInheritedData.h",
101 "StyleReflection.h", 101 "StyleReflection.h",
102 "StyleScrollSnapData.cpp", 102 "StyleScrollSnapData.cpp",
103 "StyleScrollSnapData.h", 103 "StyleScrollSnapData.h",
104 "StyleSelfAlignmentData.h", 104 "StyleSelfAlignmentData.h",
105 "StyleTransformData.cpp", 105 "StyleTransformData.cpp",
106 "StyleTransformData.h", 106 "StyleTransformData.h",
107 "StyleVisualData.cpp",
108 "StyleVisualData.h",
109 "StyleWillChangeData.cpp", 107 "StyleWillChangeData.cpp",
110 "StyleWillChangeData.h", 108 "StyleWillChangeData.h",
111 "TextSizeAdjust.h", 109 "TextSizeAdjust.h",
112 ] 110 ]
113 configs += [ 111 configs += [
114 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 112 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
115 "//build/config/compiler:no_size_t_to_int_warning", 113 "//build/config/compiler:no_size_t_to_int_warning",
116 ] 114 ]
117 } 115 }
118 116
119 blink_core_sources("svg_style") { 117 blink_core_sources("svg_style") {
120 sources = [ 118 sources = [
121 "SVGComputedStyle.cpp", 119 "SVGComputedStyle.cpp",
122 "SVGComputedStyle.h", 120 "SVGComputedStyle.h",
123 "SVGComputedStyleDefs.cpp", 121 "SVGComputedStyleDefs.cpp",
124 "SVGComputedStyleDefs.h", 122 "SVGComputedStyleDefs.h",
125 ] 123 ]
126 configs += [ 124 configs += [
127 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 125 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
128 "//build/config/compiler:no_size_t_to_int_warning", 126 "//build/config/compiler:no_size_t_to_int_warning",
129 ] 127 ]
130 } 128 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698