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

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

Issue 2639303004: Implements CSSPropertyAPI for the fragmentation element properties. (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 346 matching lines...) Expand 10 before | Expand all | Expand 10 after
357 "properties/CSSPropertyAPIRotate.cpp", 357 "properties/CSSPropertyAPIRotate.cpp",
358 "properties/CSSPropertyAPIScrollSnapCoordinate.cpp", 358 "properties/CSSPropertyAPIScrollSnapCoordinate.cpp",
359 "properties/CSSPropertyAPISize.cpp", 359 "properties/CSSPropertyAPISize.cpp",
360 "properties/CSSPropertyAPITextDecorationColor.cpp", 360 "properties/CSSPropertyAPITextDecorationColor.cpp",
361 "properties/CSSPropertyAPITextDecorationSkip.cpp", 361 "properties/CSSPropertyAPITextDecorationSkip.cpp",
362 "properties/CSSPropertyAPITextUnderlinePosition.cpp", 362 "properties/CSSPropertyAPITextUnderlinePosition.cpp",
363 "properties/CSSPropertyAPITransformOrigin.cpp", 363 "properties/CSSPropertyAPITransformOrigin.cpp",
364 "properties/CSSPropertyAPITranslate.cpp", 364 "properties/CSSPropertyAPITranslate.cpp",
365 "properties/CSSPropertyAPIWebkitPadding.cpp", 365 "properties/CSSPropertyAPIWebkitPadding.cpp",
366 "properties/CSSPropertyAPIWebkitTransformOriginZ.cpp", 366 "properties/CSSPropertyAPIWebkitTransformOriginZ.cpp",
367 "properties/CSSPropertyAPIWidows.cpp",
367 "properties/CSSPropertyAPIWillChange.cpp", 368 "properties/CSSPropertyAPIWillChange.cpp",
368 "properties/CSSPropertyAPIZIndex.cpp", 369 "properties/CSSPropertyAPIZIndex.cpp",
369 "properties/CSSPropertyAPIZoom.cpp", 370 "properties/CSSPropertyAPIZoom.cpp",
370 "properties/CSSPropertyDescriptor.h", 371 "properties/CSSPropertyDescriptor.h",
371 "resolver/AnimatedStyleBuilder.cpp", 372 "resolver/AnimatedStyleBuilder.cpp",
372 "resolver/AnimatedStyleBuilder.h", 373 "resolver/AnimatedStyleBuilder.h",
373 "resolver/CSSToStyleMap.cpp", 374 "resolver/CSSToStyleMap.cpp",
374 "resolver/CSSToStyleMap.h", 375 "resolver/CSSToStyleMap.h",
375 "resolver/CSSVariableResolver.cpp", 376 "resolver/CSSVariableResolver.cpp",
376 "resolver/CSSVariableResolver.h", 377 "resolver/CSSVariableResolver.h",
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
412 "resolver/TransformBuilder.h", 413 "resolver/TransformBuilder.h",
413 "resolver/ViewportStyleResolver.cpp", 414 "resolver/ViewportStyleResolver.cpp",
414 "resolver/ViewportStyleResolver.h", 415 "resolver/ViewportStyleResolver.h",
415 ] 416 ]
416 417
417 configs += [ 418 configs += [
418 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 419 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
419 "//build/config/compiler:no_size_t_to_int_warning", 420 "//build/config/compiler:no_size_t_to_int_warning",
420 ] 421 ]
421 } 422 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698