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

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

Issue 2366313006: CSS Properties and Values API: Support non-inherited custom properties (Closed)
Patch Set: use de morgan's law Created 4 years, 2 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 29 matching lines...) Expand all
40 "StyleDeprecatedFlexibleBoxData.cpp", 40 "StyleDeprecatedFlexibleBoxData.cpp",
41 "StyleFetchedImage.cpp", 41 "StyleFetchedImage.cpp",
42 "StyleFetchedImageSet.cpp", 42 "StyleFetchedImageSet.cpp",
43 "StyleFilterData.cpp", 43 "StyleFilterData.cpp",
44 "StyleFlexibleBoxData.cpp", 44 "StyleFlexibleBoxData.cpp",
45 "StyleGeneratedImage.cpp", 45 "StyleGeneratedImage.cpp",
46 "StyleGridData.cpp", 46 "StyleGridData.cpp",
47 "StyleGridItemData.cpp", 47 "StyleGridItemData.cpp",
48 "StyleImage.cpp", 48 "StyleImage.cpp",
49 "StyleInheritedData.cpp", 49 "StyleInheritedData.cpp",
50 "StyleInheritedVariables.cpp",
51 "StyleInheritedVariables.h",
50 "StyleInvalidImage.h", 52 "StyleInvalidImage.h",
51 "StyleMotionData.cpp", 53 "StyleMotionData.cpp",
52 "StyleMotionData.h", 54 "StyleMotionData.h",
53 "StyleMultiColData.cpp", 55 "StyleMultiColData.cpp",
56 "StyleNonInheritedVariables.cpp",
57 "StyleNonInheritedVariables.h",
54 "StyleOffsetRotation.h", 58 "StyleOffsetRotation.h",
55 "StylePath.cpp", 59 "StylePath.cpp",
56 "StylePath.h", 60 "StylePath.h",
57 "StylePendingImage.h", 61 "StylePendingImage.h",
58 "StyleRareInheritedData.cpp", 62 "StyleRareInheritedData.cpp",
59 "StyleRareNonInheritedData.cpp", 63 "StyleRareNonInheritedData.cpp",
60 "StyleScrollSnapData.cpp", 64 "StyleScrollSnapData.cpp",
61 "StyleScrollSnapData.h", 65 "StyleScrollSnapData.h",
62 "StyleSelfAlignmentData.h", 66 "StyleSelfAlignmentData.h",
63 "StyleSurroundData.cpp", 67 "StyleSurroundData.cpp",
64 "StyleTransformData.cpp", 68 "StyleTransformData.cpp",
65 "StyleVariableData.cpp",
66 "StyleVariableData.h",
67 "StyleVisualData.cpp", 69 "StyleVisualData.cpp",
68 "StyleWillChangeData.cpp", 70 "StyleWillChangeData.cpp",
69 "TextSizeAdjust.h", 71 "TextSizeAdjust.h",
70 ] 72 ]
71 configs += [ 73 configs += [
72 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 74 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
73 "//build/config/compiler:no_size_t_to_int_warning", 75 "//build/config/compiler:no_size_t_to_int_warning",
74 ] 76 ]
75 } 77 }
76 78
77 blink_core_sources("svg") { 79 blink_core_sources("svg") {
78 sources = [ 80 sources = [
79 "SVGComputedStyle.cpp", 81 "SVGComputedStyle.cpp",
80 "SVGComputedStyleDefs.cpp", 82 "SVGComputedStyleDefs.cpp",
81 ] 83 ]
82 configs += [ 84 configs += [
83 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 85 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
84 "//build/config/compiler:no_size_t_to_int_warning", 86 "//build/config/compiler:no_size_t_to_int_warning",
85 ] 87 ]
86 } 88 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp ('k') | third_party/WebKit/Source/core/style/ComputedStyle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698