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

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

Issue 2642013002: Implements CSSPropertyAPI for the shape-outside property. (Closed)
Patch Set: Created 3 years, 11 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("css") { 7 blink_core_sources("css") {
8 split_count = 5 8 split_count = 5
9 sources = [ 9 sources = [
10 "ActiveStyleSheets.cpp", 10 "ActiveStyleSheets.cpp",
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 "properties/CSSPropertyAPIFontSizeAdjust.cpp", 352 "properties/CSSPropertyAPIFontSizeAdjust.cpp",
353 "properties/CSSPropertyAPIFontVariationSettings.cpp", 353 "properties/CSSPropertyAPIFontVariationSettings.cpp",
354 "properties/CSSPropertyAPIOffsetPosition.cpp", 354 "properties/CSSPropertyAPIOffsetPosition.cpp",
355 "properties/CSSPropertyAPIOutlineOffset.cpp", 355 "properties/CSSPropertyAPIOutlineOffset.cpp",
356 "properties/CSSPropertyAPIPage.cpp", 356 "properties/CSSPropertyAPIPage.cpp",
357 "properties/CSSPropertyAPIPaintOrder.cpp", 357 "properties/CSSPropertyAPIPaintOrder.cpp",
358 "properties/CSSPropertyAPIQuotes.cpp", 358 "properties/CSSPropertyAPIQuotes.cpp",
359 "properties/CSSPropertyAPIRotate.cpp", 359 "properties/CSSPropertyAPIRotate.cpp",
360 "properties/CSSPropertyAPIScrollSnapCoordinate.cpp", 360 "properties/CSSPropertyAPIScrollSnapCoordinate.cpp",
361 "properties/CSSPropertyAPIShapeMargin.cpp", 361 "properties/CSSPropertyAPIShapeMargin.cpp",
362 "properties/CSSPropertyAPIShapeOutside.cpp",
362 "properties/CSSPropertyAPISize.cpp", 363 "properties/CSSPropertyAPISize.cpp",
363 "properties/CSSPropertyAPIStrokeDasharray.cpp", 364 "properties/CSSPropertyAPIStrokeDasharray.cpp",
364 "properties/CSSPropertyAPITabSize.cpp", 365 "properties/CSSPropertyAPITabSize.cpp",
365 "properties/CSSPropertyAPITextDecorationColor.cpp", 366 "properties/CSSPropertyAPITextDecorationColor.cpp",
366 "properties/CSSPropertyAPITextDecorationSkip.cpp", 367 "properties/CSSPropertyAPITextDecorationSkip.cpp",
367 "properties/CSSPropertyAPITextIndent.cpp", 368 "properties/CSSPropertyAPITextIndent.cpp",
368 "properties/CSSPropertyAPITextUnderlinePosition.cpp", 369 "properties/CSSPropertyAPITextUnderlinePosition.cpp",
369 "properties/CSSPropertyAPITransformOrigin.cpp", 370 "properties/CSSPropertyAPITransformOrigin.cpp",
370 "properties/CSSPropertyAPITranslate.cpp", 371 "properties/CSSPropertyAPITranslate.cpp",
371 "properties/CSSPropertyAPIWebkitBoxFlexGroup.cpp", 372 "properties/CSSPropertyAPIWebkitBoxFlexGroup.cpp",
372 "properties/CSSPropertyAPIWebkitHighlight.cpp", 373 "properties/CSSPropertyAPIWebkitHighlight.cpp",
373 "properties/CSSPropertyAPIWebkitLineClamp.cpp", 374 "properties/CSSPropertyAPIWebkitLineClamp.cpp",
374 "properties/CSSPropertyAPIWebkitPadding.cpp", 375 "properties/CSSPropertyAPIWebkitPadding.cpp",
375 "properties/CSSPropertyAPIWebkitTextEmphasisStyle.cpp", 376 "properties/CSSPropertyAPIWebkitTextEmphasisStyle.cpp",
376 "properties/CSSPropertyAPIWebkitTransformOriginZ.cpp", 377 "properties/CSSPropertyAPIWebkitTransformOriginZ.cpp",
377 "properties/CSSPropertyAPIWillChange.cpp", 378 "properties/CSSPropertyAPIWillChange.cpp",
378 "properties/CSSPropertyAPIZIndex.cpp", 379 "properties/CSSPropertyAPIZIndex.cpp",
379 "properties/CSSPropertyAPIZoom.cpp", 380 "properties/CSSPropertyAPIZoom.cpp",
380 "properties/CSSPropertyDescriptor.h", 381 "properties/CSSPropertyDescriptor.h",
382 "properties/CSSPropertyShapeUtil.cpp",
383 "properties/CSSPropertyShapeUtil.h",
381 "resolver/AnimatedStyleBuilder.cpp", 384 "resolver/AnimatedStyleBuilder.cpp",
382 "resolver/AnimatedStyleBuilder.h", 385 "resolver/AnimatedStyleBuilder.h",
383 "resolver/CSSToStyleMap.cpp", 386 "resolver/CSSToStyleMap.cpp",
384 "resolver/CSSToStyleMap.h", 387 "resolver/CSSToStyleMap.h",
385 "resolver/CSSVariableResolver.cpp", 388 "resolver/CSSVariableResolver.cpp",
386 "resolver/CSSVariableResolver.h", 389 "resolver/CSSVariableResolver.h",
387 "resolver/ElementResolveContext.cpp", 390 "resolver/ElementResolveContext.cpp",
388 "resolver/ElementResolveContext.h", 391 "resolver/ElementResolveContext.h",
389 "resolver/ElementStyleResources.cpp", 392 "resolver/ElementStyleResources.cpp",
390 "resolver/ElementStyleResources.h", 393 "resolver/ElementStyleResources.h",
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
422 "resolver/TransformBuilder.h", 425 "resolver/TransformBuilder.h",
423 "resolver/ViewportStyleResolver.cpp", 426 "resolver/ViewportStyleResolver.cpp",
424 "resolver/ViewportStyleResolver.h", 427 "resolver/ViewportStyleResolver.h",
425 ] 428 ]
426 429
427 configs += [ 430 configs += [
428 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 431 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
429 "//build/config/compiler:no_size_t_to_int_warning", 432 "//build/config/compiler:no_size_t_to_int_warning",
430 ] 433 ]
431 } 434 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698