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

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

Issue 2881673003: CSS Motion Path: Support parsing of ray(<angle>) paths (Closed)
Patch Set: DCHECK_EQ 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 "StyleNonInheritedVariables.cpp", 89 "StyleNonInheritedVariables.cpp",
90 "StyleNonInheritedVariables.h", 90 "StyleNonInheritedVariables.h",
91 "StyleOffsetRotation.h", 91 "StyleOffsetRotation.h",
92 "StylePath.cpp", 92 "StylePath.cpp",
93 "StylePath.h", 93 "StylePath.h",
94 "StylePendingImage.h", 94 "StylePendingImage.h",
95 "StyleRareInheritedData.cpp", 95 "StyleRareInheritedData.cpp",
96 "StyleRareInheritedData.h", 96 "StyleRareInheritedData.h",
97 "StyleRareNonInheritedData.cpp", 97 "StyleRareNonInheritedData.cpp",
98 "StyleRareNonInheritedData.h", 98 "StyleRareNonInheritedData.h",
99 "StyleRay.cpp",
100 "StyleRay.h",
99 "StyleReflection.h", 101 "StyleReflection.h",
100 "StyleScrollSnapData.cpp", 102 "StyleScrollSnapData.cpp",
101 "StyleScrollSnapData.h", 103 "StyleScrollSnapData.h",
102 "StyleSelfAlignmentData.h", 104 "StyleSelfAlignmentData.h",
103 "StyleTransformData.cpp", 105 "StyleTransformData.cpp",
104 "StyleTransformData.h", 106 "StyleTransformData.h",
105 "StyleWillChangeData.cpp", 107 "StyleWillChangeData.cpp",
106 "StyleWillChangeData.h", 108 "StyleWillChangeData.h",
107 "TextSizeAdjust.h", 109 "TextSizeAdjust.h",
108 ] 110 ]
109 configs += [ 111 configs += [
110 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 112 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
111 "//build/config/compiler:no_size_t_to_int_warning", 113 "//build/config/compiler:no_size_t_to_int_warning",
112 ] 114 ]
113 } 115 }
114 116
115 blink_core_sources("svg_style") { 117 blink_core_sources("svg_style") {
116 sources = [ 118 sources = [
117 "SVGComputedStyle.cpp", 119 "SVGComputedStyle.cpp",
118 "SVGComputedStyle.h", 120 "SVGComputedStyle.h",
119 "SVGComputedStyleDefs.cpp", 121 "SVGComputedStyleDefs.cpp",
120 "SVGComputedStyleDefs.h", 122 "SVGComputedStyleDefs.h",
121 ] 123 ]
122 configs += [ 124 configs += [
123 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 125 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
124 "//build/config/compiler:no_size_t_to_int_warning", 126 "//build/config/compiler:no_size_t_to_int_warning",
125 ] 127 ]
126 } 128 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698