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

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

Issue 2533673002: Added CSSPropertyAPI and CSS padding properties which implement this API (Closed)
Patch Set: Added comments and made code neater Created 4 years 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 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 "parser/CSSSupportsParser.cpp", 334 "parser/CSSSupportsParser.cpp",
335 "parser/CSSSupportsParser.h", 335 "parser/CSSSupportsParser.h",
336 "parser/CSSTokenizer.cpp", 336 "parser/CSSTokenizer.cpp",
337 "parser/CSSTokenizerInputStream.cpp", 337 "parser/CSSTokenizerInputStream.cpp",
338 "parser/CSSVariableParser.cpp", 338 "parser/CSSVariableParser.cpp",
339 "parser/CSSVariableParser.h", 339 "parser/CSSVariableParser.h",
340 "parser/MediaQueryBlockWatcher.cpp", 340 "parser/MediaQueryBlockWatcher.cpp",
341 "parser/MediaQueryParser.cpp", 341 "parser/MediaQueryParser.cpp",
342 "parser/SizesAttributeParser.cpp", 342 "parser/SizesAttributeParser.cpp",
343 "parser/SizesCalcParser.cpp", 343 "parser/SizesCalcParser.cpp",
344 "properties/CSSPaddingProperties.cpp",
345 "properties/CSSPaddingProperties.h",
346 "properties/CSSPropertyAPI.h",
347 "properties/CSSPropertyDescriptor.cpp",
348 "properties/CSSPropertyDescriptor.h",
344 "resolver/AnimatedStyleBuilder.cpp", 349 "resolver/AnimatedStyleBuilder.cpp",
345 "resolver/AnimatedStyleBuilder.h", 350 "resolver/AnimatedStyleBuilder.h",
346 "resolver/CSSToStyleMap.cpp", 351 "resolver/CSSToStyleMap.cpp",
347 "resolver/CSSToStyleMap.h", 352 "resolver/CSSToStyleMap.h",
348 "resolver/CSSVariableResolver.cpp", 353 "resolver/CSSVariableResolver.cpp",
349 "resolver/CSSVariableResolver.h", 354 "resolver/CSSVariableResolver.h",
350 "resolver/ElementResolveContext.cpp", 355 "resolver/ElementResolveContext.cpp",
351 "resolver/ElementResolveContext.h", 356 "resolver/ElementResolveContext.h",
352 "resolver/ElementStyleResources.cpp", 357 "resolver/ElementStyleResources.cpp",
353 "resolver/ElementStyleResources.h", 358 "resolver/ElementStyleResources.h",
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
385 "resolver/TransformBuilder.h", 390 "resolver/TransformBuilder.h",
386 "resolver/ViewportStyleResolver.cpp", 391 "resolver/ViewportStyleResolver.cpp",
387 "resolver/ViewportStyleResolver.h", 392 "resolver/ViewportStyleResolver.h",
388 ] 393 ]
389 394
390 configs += [ 395 configs += [
391 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 396 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
392 "//build/config/compiler:no_size_t_to_int_warning", 397 "//build/config/compiler:no_size_t_to_int_warning",
393 ] 398 ]
394 } 399 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698