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

Side by Side Diff: sky/engine/platform/BUILD.gn

Issue 1076623002: Remove our impressive amount of CSS Cursor code. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 8 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//sky/engine/build/scripts/scripts.gni") 6 import("//sky/engine/build/scripts/scripts.gni")
7 import("//sky/engine/config.gni") 7 import("//sky/engine/config.gni")
8 import("//testing/test.gni") 8 import("//testing/test.gni")
9 9
10 # Most targets in this file are private actions so use that as the default. 10 # Most targets in this file are private actions so use that as the default.
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 ":color_data", 82 ":color_data",
83 ":font_family_names", 83 ":font_family_names",
84 ":runtime_enabled_features", 84 ":runtime_enabled_features",
85 ] 85 ]
86 } 86 }
87 87
88 source_set("platform") { 88 source_set("platform") {
89 visibility += [ "//sky/*" ] 89 visibility += [ "//sky/*" ]
90 90
91 sources = [ 91 sources = [
92 "AsyncMethodRunner.h",
93 "CalculationValue.h",
94 "CheckedInt.h",
95 "Clock.cpp",
96 "Clock.h",
97 "ColorSuggestion.h",
98 "ContentType.cpp",
99 "ContentType.h",
100 "DateComponents.cpp",
101 "DateComponents.h",
102 "Decimal.cpp",
103 "Decimal.h",
104 "EventDispatchForbiddenScope.h",
105 "FloatConversion.h",
106 "HostWindow.h",
107 "JSONValues.cpp",
108 "JSONValues.h",
109 "KeyboardCodes.h",
110 "Language.cpp",
111 "Language.h",
112 "LayoutTestSupport.cpp",
113 "LayoutTestSupport.h",
114 "LayoutUnit.h",
115 "Length.cpp",
116 "Length.h",
117 "LengthBox.cpp",
118 "LengthBox.h",
119 "LengthFunctions.cpp",
120 "LengthFunctions.h",
121 "LengthPoint.h",
122 "LengthSize.h",
123 "LifecycleContext.h",
124 "LifecycleNotifier.h",
125 "LifecycleObserver.h",
126 "Logging.cpp",
127 "Logging.h",
128 "MIMETypeRegistry.cpp",
129 "MIMETypeRegistry.h",
130 "NotImplemented.cpp",
131 "NotImplemented.h",
132 "ParsingUtilities.h",
133 "Partitions.cpp",
134 "Partitions.h",
135 "PlatformExport.h",
136 "PlatformScreen.cpp",
137 "PlatformScreen.h",
138 "PlatformThreadData.cpp",
139 "PlatformThreadData.h",
140 "PurgeableVector.cpp",
141 "PurgeableVector.h",
142 "RefCountedSupplement.h",
143 "ScriptForbiddenScope.cpp",
144 "ScriptForbiddenScope.h",
145 "SharedBuffer.cpp",
146 "SharedBuffer.h",
147 "SharedBufferChunkReader.cpp",
148 "SharedBufferChunkReader.h",
149 "SharedTimer.cpp",
150 "SharedTimer.h",
151 "Supplementable.h",
152 "ThreadTimers.cpp",
153 "ThreadTimers.h",
154 "Timer.cpp",
155 "Timer.h",
156 "TraceEvent.h",
157 "WebThread.cpp",
158 "Widget.cpp",
159 "Widget.h",
160 "WindowsKeyboardCodes.h",
92 "animation/AnimationUtilities.h", 161 "animation/AnimationUtilities.h",
93 "animation/AnimationValue.h", 162 "animation/AnimationValue.h",
94 "animation/KeyframeValueList.cpp", 163 "animation/KeyframeValueList.cpp",
95 "animation/KeyframeValueList.h", 164 "animation/KeyframeValueList.h",
96 "animation/TimingFunction.cpp", 165 "animation/TimingFunction.cpp",
97 "animation/TimingFunction.h", 166 "animation/TimingFunction.h",
98 "animation/UnitBezier.h", 167 "animation/UnitBezier.h",
99 "AsyncMethodRunner.h",
100 "CalculationValue.h",
101 "CheckedInt.h",
102 "clipboard/ClipboardMimeTypes.cpp", 168 "clipboard/ClipboardMimeTypes.cpp",
103 "clipboard/ClipboardMimeTypes.h", 169 "clipboard/ClipboardMimeTypes.h",
104 "clipboard/ClipboardUtilities.cpp", 170 "clipboard/ClipboardUtilities.cpp",
105 "clipboard/ClipboardUtilities.h", 171 "clipboard/ClipboardUtilities.h",
106 "clipboard/ClipboardUtilitiesPosix.cpp", 172 "clipboard/ClipboardUtilitiesPosix.cpp",
107 "Clock.cpp",
108 "Clock.h",
109 "ColorSuggestion.h",
110 "ContentType.cpp",
111 "ContentType.h",
112 "Cursor.cpp",
113 "Cursor.h",
114 "DateComponents.cpp",
115 "DateComponents.h",
116 "Decimal.cpp",
117 "Decimal.h",
118 "EventDispatchForbiddenScope.h",
119 "exported/linux/WebFontInfo.cpp",
120 "exported/linux/WebFontRenderStyle.cpp",
121 "exported/Platform.cpp", 173 "exported/Platform.cpp",
122 "exported/ServiceProvider.cpp", 174 "exported/ServiceProvider.cpp",
123 "exported/WebArrayBuffer.cpp", 175 "exported/WebArrayBuffer.cpp",
176 "exported/WebCString.cpp",
124 "exported/WebCommon.cpp", 177 "exported/WebCommon.cpp",
125 "exported/WebCString.cpp",
126 "exported/WebCursorInfo.cpp",
127 "exported/WebData.cpp", 178 "exported/WebData.cpp",
128 "exported/WebHTTPBody.cpp", 179 "exported/WebHTTPBody.cpp",
129 "exported/WebHTTPLoadInfo.cpp", 180 "exported/WebHTTPLoadInfo.cpp",
130 "exported/WebImageSkia.cpp", 181 "exported/WebImageSkia.cpp",
131 "exported/WebString.cpp", 182 "exported/WebString.cpp",
132 "exported/WebURL.cpp", 183 "exported/WebURL.cpp",
133 "exported/WebURLError.cpp", 184 "exported/WebURLError.cpp",
134 "exported/WebURLLoadTiming.cpp", 185 "exported/WebURLLoadTiming.cpp",
135 "exported/WebURLRequest.cpp", 186 "exported/WebURLRequest.cpp",
136 "exported/WebURLRequestPrivate.h", 187 "exported/WebURLRequestPrivate.h",
137 "exported/WebURLResponse.cpp", 188 "exported/WebURLResponse.cpp",
138 "exported/WebURLResponsePrivate.h", 189 "exported/WebURLResponsePrivate.h",
139 "exported/WrappedResourceRequest.h", 190 "exported/WrappedResourceRequest.h",
140 "exported/WrappedResourceResponse.h", 191 "exported/WrappedResourceResponse.h",
192 "exported/linux/WebFontInfo.cpp",
193 "exported/linux/WebFontRenderStyle.cpp",
141 "fetcher/MojoFetcher.cpp", 194 "fetcher/MojoFetcher.cpp",
142 "fetcher/MojoFetcher.h", 195 "fetcher/MojoFetcher.h",
143 "FloatConversion.h",
144 "fonts/AlternateFontFamily.h", 196 "fonts/AlternateFontFamily.h",
145 "fonts/android/FontCacheAndroid.cpp",
146 "fonts/Character.cpp", 197 "fonts/Character.cpp",
147 "fonts/Character.h", 198 "fonts/Character.h",
148 "fonts/CustomFontData.h", 199 "fonts/CustomFontData.h",
149 "fonts/FixedPitchFontType.h", 200 "fonts/FixedPitchFontType.h",
150 "fonts/Font.cpp", 201 "fonts/Font.cpp",
151 "fonts/Font.h", 202 "fonts/Font.h",
152 "fonts/FontBaseline.h", 203 "fonts/FontBaseline.h",
153 "fonts/FontCache.cpp", 204 "fonts/FontCache.cpp",
154 "fonts/FontCache.h", 205 "fonts/FontCache.h",
155 "fonts/FontCacheClient.h", 206 "fonts/FontCacheClient.h",
(...skipping 23 matching lines...) Expand all
179 "fonts/FontTraits.h", 230 "fonts/FontTraits.h",
180 "fonts/FontWidthVariant.h", 231 "fonts/FontWidthVariant.h",
181 "fonts/GenericFontFamilySettings.cpp", 232 "fonts/GenericFontFamilySettings.cpp",
182 "fonts/GenericFontFamilySettings.h", 233 "fonts/GenericFontFamilySettings.h",
183 "fonts/Glyph.h", 234 "fonts/Glyph.h",
184 "fonts/GlyphBuffer.h", 235 "fonts/GlyphBuffer.h",
185 "fonts/GlyphMetricsMap.h", 236 "fonts/GlyphMetricsMap.h",
186 "fonts/GlyphPage.h", 237 "fonts/GlyphPage.h",
187 "fonts/GlyphPageTreeNode.cpp", 238 "fonts/GlyphPageTreeNode.cpp",
188 "fonts/GlyphPageTreeNode.h", 239 "fonts/GlyphPageTreeNode.h",
240 "fonts/Latin1TextIterator.h",
241 "fonts/SegmentedFontData.cpp",
242 "fonts/SegmentedFontData.h",
243 "fonts/SimpleFontData.cpp",
244 "fonts/SimpleFontData.h",
245 "fonts/TextBlob.h",
246 "fonts/TextRenderingMode.h",
247 "fonts/TypesettingFeatures.h",
248 "fonts/VDMXParser.cpp",
249 "fonts/VDMXParser.h",
250 "fonts/WidthCache.h",
251 "fonts/WidthIterator.cpp",
252 "fonts/WidthIterator.h",
253 "fonts/android/FontCacheAndroid.cpp",
189 "fonts/harfbuzz/FontHarfBuzz.cpp", 254 "fonts/harfbuzz/FontHarfBuzz.cpp",
190 "fonts/harfbuzz/HarfBuzzFace.cpp", 255 "fonts/harfbuzz/HarfBuzzFace.cpp",
191 "fonts/harfbuzz/HarfBuzzFace.h", 256 "fonts/harfbuzz/HarfBuzzFace.h",
192 "fonts/harfbuzz/HarfBuzzFaceSkia.cpp", 257 "fonts/harfbuzz/HarfBuzzFaceSkia.cpp",
193 "fonts/harfbuzz/HarfBuzzShaper.cpp", 258 "fonts/harfbuzz/HarfBuzzShaper.cpp",
194 "fonts/harfbuzz/HarfBuzzShaper.h", 259 "fonts/harfbuzz/HarfBuzzShaper.h",
195 "fonts/Latin1TextIterator.h",
196 "fonts/linux/FontCacheLinux.cpp", 260 "fonts/linux/FontCacheLinux.cpp",
197 "fonts/linux/FontPlatformDataLinux.cpp", 261 "fonts/linux/FontPlatformDataLinux.cpp",
198 "fonts/opentype/OpenTypeSanitizer.cpp", 262 "fonts/opentype/OpenTypeSanitizer.cpp",
199 "fonts/opentype/OpenTypeSanitizer.h", 263 "fonts/opentype/OpenTypeSanitizer.h",
200 "fonts/opentype/OpenTypeTypes.h", 264 "fonts/opentype/OpenTypeTypes.h",
201 "fonts/opentype/OpenTypeVerticalData.cpp", 265 "fonts/opentype/OpenTypeVerticalData.cpp",
202 "fonts/opentype/OpenTypeVerticalData.h", 266 "fonts/opentype/OpenTypeVerticalData.h",
203 "fonts/SegmentedFontData.cpp",
204 "fonts/SegmentedFontData.h",
205 "fonts/SimpleFontData.cpp",
206 "fonts/SimpleFontData.h",
207 "fonts/skia/FontCacheSkia.cpp", 267 "fonts/skia/FontCacheSkia.cpp",
208 "fonts/skia/FontCustomPlatformDataSkia.cpp", 268 "fonts/skia/FontCustomPlatformDataSkia.cpp",
209 "fonts/skia/FontPlatformDataSkia.cpp", 269 "fonts/skia/FontPlatformDataSkia.cpp",
210 "fonts/skia/SimpleFontDataSkia.cpp", 270 "fonts/skia/SimpleFontDataSkia.cpp",
211 "fonts/TextBlob.h",
212 "fonts/TextRenderingMode.h",
213 "fonts/TypesettingFeatures.h",
214 "fonts/VDMXParser.cpp",
215 "fonts/VDMXParser.h",
216 "fonts/WidthCache.h",
217 "fonts/WidthIterator.cpp",
218 "fonts/WidthIterator.h",
219 "geometry/FloatBox.h", 271 "geometry/FloatBox.h",
220 "geometry/FloatBoxExtent.h", 272 "geometry/FloatBoxExtent.h",
221 "geometry/FloatPoint.cpp", 273 "geometry/FloatPoint.cpp",
222 "geometry/FloatPoint.h", 274 "geometry/FloatPoint.h",
223 "geometry/FloatPoint3D.cpp", 275 "geometry/FloatPoint3D.cpp",
224 "geometry/FloatPoint3D.h", 276 "geometry/FloatPoint3D.h",
225 "geometry/FloatQuad.cpp", 277 "geometry/FloatQuad.cpp",
226 "geometry/FloatQuad.h", 278 "geometry/FloatQuad.h",
227 "geometry/FloatRect.cpp", 279 "geometry/FloatRect.cpp",
228 "geometry/FloatRect.h", 280 "geometry/FloatRect.h",
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 "graphics/CrossfadeGeneratedImage.h", 315 "graphics/CrossfadeGeneratedImage.h",
264 "graphics/DashArray.h", 316 "graphics/DashArray.h",
265 "graphics/DecodingImageGenerator.cpp", 317 "graphics/DecodingImageGenerator.cpp",
266 "graphics/DecodingImageGenerator.h", 318 "graphics/DecodingImageGenerator.h",
267 "graphics/DeferredImageDecoder.cpp", 319 "graphics/DeferredImageDecoder.cpp",
268 "graphics/DeferredImageDecoder.h", 320 "graphics/DeferredImageDecoder.h",
269 "graphics/DisplayList.cpp", 321 "graphics/DisplayList.cpp",
270 "graphics/DisplayList.h", 322 "graphics/DisplayList.h",
271 "graphics/DrawLooperBuilder.cpp", 323 "graphics/DrawLooperBuilder.cpp",
272 "graphics/DrawLooperBuilder.h", 324 "graphics/DrawLooperBuilder.h",
325 "graphics/FrameData.cpp",
326 "graphics/FrameData.h",
327 "graphics/GeneratedImage.cpp",
328 "graphics/GeneratedImage.h",
329 "graphics/Gradient.cpp",
330 "graphics/Gradient.h",
331 "graphics/GradientGeneratedImage.cpp",
332 "graphics/GradientGeneratedImage.h",
333 "graphics/GraphicsContext.cpp",
334 "graphics/GraphicsContext.h",
335 "graphics/GraphicsContextState.cpp",
336 "graphics/GraphicsContextState.h",
337 "graphics/GraphicsContextStateSaver.h",
338 "graphics/GraphicsTypes.cpp",
339 "graphics/GraphicsTypes.h",
340 "graphics/GraphicsTypes3D.h",
341 "graphics/Image.cpp",
342 "graphics/Image.h",
343 "graphics/ImageBuffer.cpp",
344 "graphics/ImageBuffer.h",
345 "graphics/ImageBufferClient.h",
346 "graphics/ImageBufferSurface.cpp",
347 "graphics/ImageBufferSurface.h",
348 "graphics/ImageDecodingStore.cpp",
349 "graphics/ImageDecodingStore.h",
350 "graphics/ImageFilter.cpp",
351 "graphics/ImageFilter.h",
352 "graphics/ImageFrameGenerator.cpp",
353 "graphics/ImageFrameGenerator.h",
354 "graphics/ImageObserver.cpp",
355 "graphics/ImageObserver.h",
356 "graphics/ImageOrientation.cpp",
357 "graphics/ImageOrientation.h",
358 "graphics/ImageSource.cpp",
359 "graphics/ImageSource.h",
360 "graphics/Path.cpp",
361 "graphics/Path.h",
362 "graphics/PathTraversalState.cpp",
363 "graphics/PathTraversalState.h",
364 "graphics/Pattern.cpp",
365 "graphics/Pattern.h",
366 "graphics/RegionTracker.cpp",
367 "graphics/RegionTracker.h",
368 "graphics/StrokeData.cpp",
369 "graphics/StrokeData.h",
370 "graphics/ThreadSafeDataTransport.cpp",
371 "graphics/ThreadSafeDataTransport.h",
372 "graphics/UnacceleratedImageBufferSurface.cpp",
373 "graphics/UnacceleratedImageBufferSurface.h",
273 "graphics/filters/DistantLightSource.cpp", 374 "graphics/filters/DistantLightSource.cpp",
274 "graphics/filters/DistantLightSource.h", 375 "graphics/filters/DistantLightSource.h",
275 "graphics/filters/FEBlend.cpp", 376 "graphics/filters/FEBlend.cpp",
276 "graphics/filters/FEBlend.h", 377 "graphics/filters/FEBlend.h",
277 "graphics/filters/FEColorMatrix.cpp", 378 "graphics/filters/FEColorMatrix.cpp",
278 "graphics/filters/FEColorMatrix.h", 379 "graphics/filters/FEColorMatrix.h",
279 "graphics/filters/FEComponentTransfer.cpp", 380 "graphics/filters/FEComponentTransfer.cpp",
280 "graphics/filters/FEComponentTransfer.h", 381 "graphics/filters/FEComponentTransfer.h",
281 "graphics/filters/FEComposite.cpp", 382 "graphics/filters/FEComposite.cpp",
282 "graphics/filters/FEComposite.h", 383 "graphics/filters/FEComposite.h",
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
319 "graphics/filters/PointLightSource.cpp", 420 "graphics/filters/PointLightSource.cpp",
320 "graphics/filters/PointLightSource.h", 421 "graphics/filters/PointLightSource.h",
321 "graphics/filters/SkiaImageFilterBuilder.cpp", 422 "graphics/filters/SkiaImageFilterBuilder.cpp",
322 "graphics/filters/SkiaImageFilterBuilder.h", 423 "graphics/filters/SkiaImageFilterBuilder.h",
323 "graphics/filters/SourceAlpha.cpp", 424 "graphics/filters/SourceAlpha.cpp",
324 "graphics/filters/SourceAlpha.h", 425 "graphics/filters/SourceAlpha.h",
325 "graphics/filters/SourceGraphic.cpp", 426 "graphics/filters/SourceGraphic.cpp",
326 "graphics/filters/SourceGraphic.h", 427 "graphics/filters/SourceGraphic.h",
327 "graphics/filters/SpotLightSource.cpp", 428 "graphics/filters/SpotLightSource.cpp",
328 "graphics/filters/SpotLightSource.h", 429 "graphics/filters/SpotLightSource.h",
329 "graphics/FrameData.cpp",
330 "graphics/FrameData.h",
331 "graphics/GeneratedImage.cpp",
332 "graphics/GeneratedImage.h",
333 "graphics/gpu/DrawingBuffer.cpp", 430 "graphics/gpu/DrawingBuffer.cpp",
334 "graphics/gpu/DrawingBuffer.h", 431 "graphics/gpu/DrawingBuffer.h",
335 "graphics/gpu/Extensions3DUtil.cpp", 432 "graphics/gpu/Extensions3DUtil.cpp",
336 "graphics/gpu/Extensions3DUtil.h", 433 "graphics/gpu/Extensions3DUtil.h",
337 "graphics/gpu/WebGLImageBufferSurface.cpp", 434 "graphics/gpu/WebGLImageBufferSurface.cpp",
338 "graphics/gpu/WebGLImageBufferSurface.h", 435 "graphics/gpu/WebGLImageBufferSurface.h",
339 "graphics/gpu/WebGLImageConversion.cpp", 436 "graphics/gpu/WebGLImageConversion.cpp",
340 "graphics/gpu/WebGLImageConversion.h", 437 "graphics/gpu/WebGLImageConversion.h",
341 "graphics/Gradient.cpp",
342 "graphics/Gradient.h",
343 "graphics/GradientGeneratedImage.cpp",
344 "graphics/GradientGeneratedImage.h",
345 "graphics/GraphicsContext.cpp",
346 "graphics/GraphicsContext.h",
347 "graphics/GraphicsContextState.cpp",
348 "graphics/GraphicsContextState.h",
349 "graphics/GraphicsContextStateSaver.h",
350 "graphics/GraphicsTypes.cpp",
351 "graphics/GraphicsTypes.h",
352 "graphics/GraphicsTypes3D.h",
353 "graphics/Image.cpp",
354 "graphics/Image.h",
355 "graphics/ImageBuffer.cpp",
356 "graphics/ImageBuffer.h",
357 "graphics/ImageBufferClient.h",
358 "graphics/ImageBufferSurface.cpp",
359 "graphics/ImageBufferSurface.h",
360 "graphics/ImageDecodingStore.cpp",
361 "graphics/ImageDecodingStore.h",
362 "graphics/ImageFilter.cpp",
363 "graphics/ImageFilter.h",
364 "graphics/ImageFrameGenerator.cpp",
365 "graphics/ImageFrameGenerator.h",
366 "graphics/ImageObserver.cpp",
367 "graphics/ImageObserver.h",
368 "graphics/ImageOrientation.cpp",
369 "graphics/ImageOrientation.h",
370 "graphics/ImageSource.cpp",
371 "graphics/ImageSource.h",
372 "graphics/Path.cpp",
373 "graphics/Path.h",
374 "graphics/PathTraversalState.cpp",
375 "graphics/PathTraversalState.h",
376 "graphics/Pattern.cpp",
377 "graphics/Pattern.h",
378 "graphics/RegionTracker.cpp",
379 "graphics/RegionTracker.h",
380 "graphics/skia/GaneshUtils.cpp", 438 "graphics/skia/GaneshUtils.cpp",
381 "graphics/skia/GaneshUtils.h", 439 "graphics/skia/GaneshUtils.h",
382 "graphics/skia/NativeImageSkia.cpp", 440 "graphics/skia/NativeImageSkia.cpp",
383 "graphics/skia/NativeImageSkia.h", 441 "graphics/skia/NativeImageSkia.h",
442 "graphics/skia/SkSizeHash.h",
384 "graphics/skia/SkiaUtils.cpp", 443 "graphics/skia/SkiaUtils.cpp",
385 "graphics/skia/SkiaUtils.h", 444 "graphics/skia/SkiaUtils.h",
386 "graphics/skia/SkSizeHash.h",
387 "graphics/StrokeData.cpp",
388 "graphics/StrokeData.h",
389 "graphics/ThreadSafeDataTransport.cpp",
390 "graphics/ThreadSafeDataTransport.h",
391 "graphics/UnacceleratedImageBufferSurface.cpp",
392 "graphics/UnacceleratedImageBufferSurface.h",
393 "heap/Handle.h", 445 "heap/Handle.h",
394 "HostWindow.h", 446 "image-decoders/ImageDecoder.cpp",
447 "image-decoders/ImageDecoder.h",
448 "image-decoders/ImageFrame.cpp",
449 "image-decoders/ImageFrame.h",
395 "image-decoders/bmp/BMPImageDecoder.cpp", 450 "image-decoders/bmp/BMPImageDecoder.cpp",
396 "image-decoders/bmp/BMPImageDecoder.h", 451 "image-decoders/bmp/BMPImageDecoder.h",
397 "image-decoders/bmp/BMPImageReader.cpp", 452 "image-decoders/bmp/BMPImageReader.cpp",
398 "image-decoders/bmp/BMPImageReader.h", 453 "image-decoders/bmp/BMPImageReader.h",
399 "image-decoders/gif/GIFImageDecoder.cpp", 454 "image-decoders/gif/GIFImageDecoder.cpp",
400 "image-decoders/gif/GIFImageDecoder.h", 455 "image-decoders/gif/GIFImageDecoder.h",
401 "image-decoders/gif/GIFImageReader.cpp", 456 "image-decoders/gif/GIFImageReader.cpp",
402 "image-decoders/gif/GIFImageReader.h", 457 "image-decoders/gif/GIFImageReader.h",
403 "image-decoders/ico/ICOImageDecoder.cpp", 458 "image-decoders/ico/ICOImageDecoder.cpp",
404 "image-decoders/ico/ICOImageDecoder.h", 459 "image-decoders/ico/ICOImageDecoder.h",
405 "image-decoders/ImageDecoder.cpp",
406 "image-decoders/ImageDecoder.h",
407 "image-decoders/ImageFrame.cpp",
408 "image-decoders/ImageFrame.h",
409 "image-decoders/jpeg/JPEGImageDecoder.cpp", 460 "image-decoders/jpeg/JPEGImageDecoder.cpp",
410 "image-decoders/jpeg/JPEGImageDecoder.h", 461 "image-decoders/jpeg/JPEGImageDecoder.h",
411 "image-decoders/png/PNGImageDecoder.cpp", 462 "image-decoders/png/PNGImageDecoder.cpp",
412 "image-decoders/png/PNGImageDecoder.h", 463 "image-decoders/png/PNGImageDecoder.h",
413 "image-encoders/skia/JPEGImageEncoder.cpp", 464 "image-encoders/skia/JPEGImageEncoder.cpp",
414 "image-encoders/skia/JPEGImageEncoder.h", 465 "image-encoders/skia/JPEGImageEncoder.h",
415 "image-encoders/skia/PNGImageEncoder.cpp", 466 "image-encoders/skia/PNGImageEncoder.cpp",
416 "image-encoders/skia/PNGImageEncoder.h", 467 "image-encoders/skia/PNGImageEncoder.h",
417 "JSONValues.cpp",
418 "JSONValues.h",
419 "KeyboardCodes.h",
420 "Language.cpp",
421 "Language.h",
422 "LayoutTestSupport.cpp",
423 "LayoutTestSupport.h",
424 "LayoutUnit.h",
425 "Length.cpp",
426 "Length.h",
427 "LengthBox.cpp",
428 "LengthBox.h",
429 "LengthFunctions.cpp",
430 "LengthFunctions.h",
431 "LengthPoint.h",
432 "LengthSize.h",
433 "LifecycleContext.h",
434 "LifecycleNotifier.h",
435 "LifecycleObserver.h",
436 "Logging.cpp",
437 "Logging.h",
438 "MIMETypeRegistry.cpp",
439 "MIMETypeRegistry.h",
440 "network/FormData.cpp", 468 "network/FormData.cpp",
441 "network/FormData.h", 469 "network/FormData.h",
442 "network/FormDataBuilder.cpp", 470 "network/FormDataBuilder.cpp",
443 "network/FormDataBuilder.h", 471 "network/FormDataBuilder.h",
444 "network/HTTPHeaderMap.cpp", 472 "network/HTTPHeaderMap.cpp",
445 "network/HTTPHeaderMap.h", 473 "network/HTTPHeaderMap.h",
446 "network/HTTPParsers.cpp", 474 "network/HTTPParsers.cpp",
447 "network/HTTPParsers.h", 475 "network/HTTPParsers.h",
448 "network/HTTPRequest.cpp", 476 "network/HTTPRequest.cpp",
449 "network/HTTPRequest.h", 477 "network/HTTPRequest.h",
450 "network/ParsedContentType.cpp", 478 "network/ParsedContentType.cpp",
451 "network/ParsedContentType.h", 479 "network/ParsedContentType.h",
452 "network/ProxyServer.cpp", 480 "network/ProxyServer.cpp",
453 "network/ProxyServer.h", 481 "network/ProxyServer.h",
454 "network/ResourceError.cpp", 482 "network/ResourceError.cpp",
455 "network/ResourceError.h", 483 "network/ResourceError.h",
456 "network/ResourceLoadInfo.h", 484 "network/ResourceLoadInfo.h",
457 "network/ResourceLoadPriority.h", 485 "network/ResourceLoadPriority.h",
458 "network/ResourceLoadTiming.h", 486 "network/ResourceLoadTiming.h",
459 "network/ResourceRequest.cpp", 487 "network/ResourceRequest.cpp",
460 "network/ResourceRequest.h", 488 "network/ResourceRequest.h",
461 "network/ResourceResponse.cpp", 489 "network/ResourceResponse.cpp",
462 "network/ResourceResponse.h", 490 "network/ResourceResponse.h",
463 "NotImplemented.cpp",
464 "NotImplemented.h",
465 "ParsingUtilities.h",
466 "Partitions.cpp",
467 "Partitions.h",
468 "PlatformExport.h",
469 "PlatformScreen.cpp",
470 "PlatformScreen.h",
471 "PlatformThreadData.cpp",
472 "PlatformThreadData.h",
473 "PurgeableVector.cpp",
474 "PurgeableVector.h",
475 "RefCountedSupplement.h",
476 "ScriptForbiddenScope.cpp",
477 "ScriptForbiddenScope.h",
478 "SharedBuffer.cpp",
479 "SharedBuffer.h",
480 "SharedBufferChunkReader.cpp",
481 "SharedBufferChunkReader.h",
482 "SharedTimer.cpp",
483 "SharedTimer.h",
484 "Supplementable.h",
485 "text/BidiCharacterRun.cpp", 491 "text/BidiCharacterRun.cpp",
486 "text/BidiCharacterRun.h", 492 "text/BidiCharacterRun.h",
487 "text/BidiContext.cpp", 493 "text/BidiContext.cpp",
488 "text/BidiContext.h", 494 "text/BidiContext.h",
489 "text/BidiResolver.h", 495 "text/BidiResolver.h",
490 "text/BidiRunList.h", 496 "text/BidiRunList.h",
491 "text/BidiTextRun.cpp", 497 "text/BidiTextRun.cpp",
492 "text/BidiTextRun.h", 498 "text/BidiTextRun.h",
493 "text/DateTimeFormat.cpp", 499 "text/DateTimeFormat.cpp",
494 "text/DateTimeFormat.h", 500 "text/DateTimeFormat.h",
(...skipping 28 matching lines...) Expand all
523 "text/TextRun.cpp", 529 "text/TextRun.cpp",
524 "text/TextRun.h", 530 "text/TextRun.h",
525 "text/TextRunIterator.h", 531 "text/TextRunIterator.h",
526 "text/TextStream.cpp", 532 "text/TextStream.cpp",
527 "text/TextStream.h", 533 "text/TextStream.h",
528 "text/UnicodeBidi.h", 534 "text/UnicodeBidi.h",
529 "text/UnicodeRange.cpp", 535 "text/UnicodeRange.cpp",
530 "text/UnicodeRange.h", 536 "text/UnicodeRange.h",
531 "text/UnicodeUtilities.cpp", 537 "text/UnicodeUtilities.cpp",
532 "text/UnicodeUtilities.h", 538 "text/UnicodeUtilities.h",
533 "ThreadTimers.cpp",
534 "ThreadTimers.h",
535 "Timer.cpp",
536 "Timer.h",
537 "TraceEvent.h",
538 "transforms/AffineTransform.cpp", 539 "transforms/AffineTransform.cpp",
539 "transforms/AffineTransform.h", 540 "transforms/AffineTransform.h",
540 "transforms/IdentityTransformOperation.h", 541 "transforms/IdentityTransformOperation.h",
541 "transforms/InterpolatedTransformOperation.cpp", 542 "transforms/InterpolatedTransformOperation.cpp",
542 "transforms/InterpolatedTransformOperation.h", 543 "transforms/InterpolatedTransformOperation.h",
543 "transforms/Matrix3DTransformOperation.cpp", 544 "transforms/Matrix3DTransformOperation.cpp",
544 "transforms/Matrix3DTransformOperation.h", 545 "transforms/Matrix3DTransformOperation.h",
545 "transforms/MatrixTransformOperation.cpp", 546 "transforms/MatrixTransformOperation.cpp",
546 "transforms/MatrixTransformOperation.h", 547 "transforms/MatrixTransformOperation.h",
547 "transforms/PerspectiveTransformOperation.cpp", 548 "transforms/PerspectiveTransformOperation.cpp",
548 "transforms/PerspectiveTransformOperation.h", 549 "transforms/PerspectiveTransformOperation.h",
549 "transforms/RotateTransformOperation.cpp", 550 "transforms/RotateTransformOperation.cpp",
550 "transforms/RotateTransformOperation.h", 551 "transforms/RotateTransformOperation.h",
551 "transforms/ScaleTransformOperation.cpp", 552 "transforms/ScaleTransformOperation.cpp",
552 "transforms/ScaleTransformOperation.h", 553 "transforms/ScaleTransformOperation.h",
553 "transforms/SkewTransformOperation.cpp", 554 "transforms/SkewTransformOperation.cpp",
554 "transforms/SkewTransformOperation.h", 555 "transforms/SkewTransformOperation.h",
555 "transforms/TransformationMatrix.cpp",
556 "transforms/TransformationMatrix.h",
557 "transforms/TransformOperation.h", 556 "transforms/TransformOperation.h",
558 "transforms/TransformOperations.cpp", 557 "transforms/TransformOperations.cpp",
559 "transforms/TransformOperations.h", 558 "transforms/TransformOperations.h",
559 "transforms/TransformationMatrix.cpp",
560 "transforms/TransformationMatrix.h",
560 "transforms/TranslateTransformOperation.cpp", 561 "transforms/TranslateTransformOperation.cpp",
561 "transforms/TranslateTransformOperation.h", 562 "transforms/TranslateTransformOperation.h",
562 "weborigin/KnownPorts.cpp",
563 "weborigin/KnownPorts.h",
564 "weborigin/KURL.cpp", 563 "weborigin/KURL.cpp",
565 "weborigin/KURL.h", 564 "weborigin/KURL.h",
566 "weborigin/KURLHash.h", 565 "weborigin/KURLHash.h",
566 "weborigin/KnownPorts.cpp",
567 "weborigin/KnownPorts.h",
567 "weborigin/Referrer.h", 568 "weborigin/Referrer.h",
568 "weborigin/ReferrerPolicy.h", 569 "weborigin/ReferrerPolicy.h",
569 "weborigin/SecurityPolicy.cpp", 570 "weborigin/SecurityPolicy.cpp",
570 "weborigin/SecurityPolicy.h", 571 "weborigin/SecurityPolicy.h",
571 "WebThread.cpp",
572 "Widget.cpp",
573 "Widget.h",
574 "WindowsKeyboardCodes.h",
575 ] 572 ]
576 573
577 # Add in the generated files. 574 # Add in the generated files.
578 sources += get_target_outputs(":font_family_names") + 575 sources += get_target_outputs(":font_family_names") +
579 get_target_outputs(":runtime_enabled_features") + 576 get_target_outputs(":runtime_enabled_features") +
580 get_target_outputs(":color_data") 577 get_target_outputs(":color_data")
581 578
582 configs += [ 579 configs += [
583 "//sky/engine:config", 580 "//sky/engine:config",
584 "//sky/engine:non_test_config", 581 "//sky/engine:non_test_config",
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
671 "geometry/FloatRoundedRectTest.cpp", 668 "geometry/FloatRoundedRectTest.cpp",
672 "geometry/RegionTest.cpp", 669 "geometry/RegionTest.cpp",
673 "geometry/RoundedRectTest.cpp", 670 "geometry/RoundedRectTest.cpp",
674 "graphics/GraphicsContextTest.cpp", 671 "graphics/GraphicsContextTest.cpp",
675 "graphics/ThreadSafeDataTransportTest.cpp", 672 "graphics/ThreadSafeDataTransportTest.cpp",
676 "graphics/gpu/DrawingBufferTest.cpp", 673 "graphics/gpu/DrawingBufferTest.cpp",
677 "image-decoders/ImageDecoderTest.cpp", 674 "image-decoders/ImageDecoderTest.cpp",
678 "mac/ScrollElasticityControllerTest.mm", 675 "mac/ScrollElasticityControllerTest.mm",
679 "network/HTTPParsersTest.cpp", 676 "network/HTTPParsersTest.cpp",
680 "testing/RunAllTests.cpp", 677 "testing/RunAllTests.cpp",
681 "transforms/TransformOperationsTest.cpp",
682 "transforms/TransformationMatrixTest.cpp",
683 "text/BidiResolverTest.cpp", 678 "text/BidiResolverTest.cpp",
684 "text/SegmentedStringTest.cpp", 679 "text/SegmentedStringTest.cpp",
685 "text/UnicodeUtilitiesTest.cpp", 680 "text/UnicodeUtilitiesTest.cpp",
681 "transforms/TransformOperationsTest.cpp",
682 "transforms/TransformationMatrixTest.cpp",
686 "weborigin/KURLTest.cpp", 683 "weborigin/KURLTest.cpp",
687 "weborigin/SecurityPolicyTest.cpp", 684 "weborigin/SecurityPolicyTest.cpp",
688 ] 685 ]
689 686
690 configs += [ "//sky/engine:config" ] 687 configs += [ "//sky/engine:config" ]
691 688
692 deps = [ 689 deps = [
693 ":platform", 690 ":platform",
694 "//base", 691 "//base",
695 "//base/allocator", 692 "//base/allocator",
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
727 # See https://bugs.webkit.org/show_bug.cgi?id=62916. 724 # See https://bugs.webkit.org/show_bug.cgi?id=62916.
728 # TODO(GYP) 725 # TODO(GYP)
729 #'cflags': ['-marm'], 726 #'cflags': ['-marm'],
730 # 'conditions': [ 727 # 'conditions': [
731 # ['OS=="android"', { 728 # ['OS=="android"', {
732 # 'cflags!': ['-mthumb'], 729 # 'cflags!': ['-mthumb'],
733 # }], 730 # }],
734 # ], 731 # ],
735 } 732 }
736 } 733 }
OLDNEW
« no previous file with comments | « sky/engine/core/rendering/style/StyleRareNonInheritedData.h ('k') | sky/engine/platform/Cursor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698