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

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

Issue 2615813002: Implements CSSPropertyAPI for the webkit-line-clamp 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 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
337 "parser/CSSSupportsParser.h", 337 "parser/CSSSupportsParser.h",
338 "parser/CSSTokenizer.cpp", 338 "parser/CSSTokenizer.cpp",
339 "parser/CSSTokenizerInputStream.cpp", 339 "parser/CSSTokenizerInputStream.cpp",
340 "parser/CSSVariableParser.cpp", 340 "parser/CSSVariableParser.cpp",
341 "parser/CSSVariableParser.h", 341 "parser/CSSVariableParser.h",
342 "parser/MediaQueryBlockWatcher.cpp", 342 "parser/MediaQueryBlockWatcher.cpp",
343 "parser/MediaQueryParser.cpp", 343 "parser/MediaQueryParser.cpp",
344 "parser/SizesAttributeParser.cpp", 344 "parser/SizesAttributeParser.cpp",
345 "parser/SizesCalcParser.cpp", 345 "parser/SizesCalcParser.cpp",
346 "properties/CSSPropertyAPI.h", 346 "properties/CSSPropertyAPI.h",
347 "properties/CSSPropertyAPIWebkitLineClamp.cpp",
347 "properties/CSSPropertyAPIWebkitPadding.cpp", 348 "properties/CSSPropertyAPIWebkitPadding.cpp",
348 "properties/CSSPropertyAPIWillChange.cpp", 349 "properties/CSSPropertyAPIWillChange.cpp",
349 "properties/CSSPropertyDescriptor.h", 350 "properties/CSSPropertyDescriptor.h",
350 "resolver/AnimatedStyleBuilder.cpp", 351 "resolver/AnimatedStyleBuilder.cpp",
351 "resolver/AnimatedStyleBuilder.h", 352 "resolver/AnimatedStyleBuilder.h",
352 "resolver/CSSToStyleMap.cpp", 353 "resolver/CSSToStyleMap.cpp",
353 "resolver/CSSToStyleMap.h", 354 "resolver/CSSToStyleMap.h",
354 "resolver/CSSVariableResolver.cpp", 355 "resolver/CSSVariableResolver.cpp",
355 "resolver/CSSVariableResolver.h", 356 "resolver/CSSVariableResolver.h",
356 "resolver/ElementResolveContext.cpp", 357 "resolver/ElementResolveContext.cpp",
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 "resolver/TransformBuilder.h", 392 "resolver/TransformBuilder.h",
392 "resolver/ViewportStyleResolver.cpp", 393 "resolver/ViewportStyleResolver.cpp",
393 "resolver/ViewportStyleResolver.h", 394 "resolver/ViewportStyleResolver.h",
394 ] 395 ]
395 396
396 configs += [ 397 configs += [
397 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 398 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
398 "//build/config/compiler:no_size_t_to_int_warning", 399 "//build/config/compiler:no_size_t_to_int_warning",
399 ] 400 ]
400 } 401 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698