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

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

Issue 2484153003: Use an SVGElementProxy in ReferenceClipPathOperation (Closed)
Patch Set: Rebase; fix comments; findElement Created 4 years, 1 month 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 "BasicShapes.cpp", 12 "BasicShapes.cpp",
13 "BorderEdge.cpp", 13 "BorderEdge.cpp",
14 "BorderEdge.h", 14 "BorderEdge.h",
15 "BorderImageLength.h", 15 "BorderImageLength.h",
16 "BorderImageLengthBox.h", 16 "BorderImageLengthBox.h",
17 "CachedUAStyle.h", 17 "CachedUAStyle.h",
18 "ClipPathOperation.cpp",
18 "ClipPathOperation.h", 19 "ClipPathOperation.h",
19 "ComputedStyle.cpp", 20 "ComputedStyle.cpp",
20 "ComputedStyle.h", 21 "ComputedStyle.h",
21 "ContentData.cpp", 22 "ContentData.cpp",
22 "CounterDirectives.cpp", 23 "CounterDirectives.cpp",
23 "DataEquivalency.h", 24 "DataEquivalency.h",
24 "DataPersistent.h", 25 "DataPersistent.h",
25 "DataRef.h", 26 "DataRef.h",
26 "FillLayer.cpp", 27 "FillLayer.cpp",
27 "FilterOperation.cpp", 28 "FilterOperation.cpp",
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 blink_core_sources("svg") { 84 blink_core_sources("svg") {
84 sources = [ 85 sources = [
85 "SVGComputedStyle.cpp", 86 "SVGComputedStyle.cpp",
86 "SVGComputedStyleDefs.cpp", 87 "SVGComputedStyleDefs.cpp",
87 ] 88 ]
88 configs += [ 89 configs += [
89 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 90 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
90 "//build/config/compiler:no_size_t_to_int_warning", 91 "//build/config/compiler:no_size_t_to_int_warning",
91 ] 92 ]
92 } 93 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698