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

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

Issue 2567473002: Made a generator for CSSPropertyDescriptor.cpp (Closed)
Patch Set: fixed some formatting 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 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
338 "parser/CSSSupportsParser.h", 338 "parser/CSSSupportsParser.h",
339 "parser/CSSTokenizer.cpp", 339 "parser/CSSTokenizer.cpp",
340 "parser/CSSTokenizerInputStream.cpp", 340 "parser/CSSTokenizerInputStream.cpp",
341 "parser/CSSVariableParser.cpp", 341 "parser/CSSVariableParser.cpp",
342 "parser/CSSVariableParser.h", 342 "parser/CSSVariableParser.h",
343 "parser/MediaQueryBlockWatcher.cpp", 343 "parser/MediaQueryBlockWatcher.cpp",
344 "parser/MediaQueryParser.cpp", 344 "parser/MediaQueryParser.cpp",
345 "parser/SizesAttributeParser.cpp", 345 "parser/SizesAttributeParser.cpp",
346 "parser/SizesCalcParser.cpp", 346 "parser/SizesCalcParser.cpp",
347 "properties/CSSPropertyAPI.h", 347 "properties/CSSPropertyAPI.h",
348 "properties/CSSPropertyAPIPadding.cpp", 348 "properties/CSSPropertyAPIWebkitPadding.cpp",
349 "properties/CSSPropertyAPIPadding.h", 349 "properties/CSSPropertyAPIWebkitPadding.h",
350 "properties/CSSPropertyDescriptor.cpp",
351 "properties/CSSPropertyDescriptor.h", 350 "properties/CSSPropertyDescriptor.h",
352 "resolver/AnimatedStyleBuilder.cpp", 351 "resolver/AnimatedStyleBuilder.cpp",
353 "resolver/AnimatedStyleBuilder.h", 352 "resolver/AnimatedStyleBuilder.h",
354 "resolver/CSSToStyleMap.cpp", 353 "resolver/CSSToStyleMap.cpp",
355 "resolver/CSSToStyleMap.h", 354 "resolver/CSSToStyleMap.h",
356 "resolver/CSSVariableResolver.cpp", 355 "resolver/CSSVariableResolver.cpp",
357 "resolver/CSSVariableResolver.h", 356 "resolver/CSSVariableResolver.h",
358 "resolver/ElementResolveContext.cpp", 357 "resolver/ElementResolveContext.cpp",
359 "resolver/ElementResolveContext.h", 358 "resolver/ElementResolveContext.h",
360 "resolver/ElementStyleResources.cpp", 359 "resolver/ElementStyleResources.cpp",
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 "resolver/TransformBuilder.h", 392 "resolver/TransformBuilder.h",
394 "resolver/ViewportStyleResolver.cpp", 393 "resolver/ViewportStyleResolver.cpp",
395 "resolver/ViewportStyleResolver.h", 394 "resolver/ViewportStyleResolver.h",
396 ] 395 ]
397 396
398 configs += [ 397 configs += [
399 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 398 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
400 "//build/config/compiler:no_size_t_to_int_warning", 399 "//build/config/compiler:no_size_t_to_int_warning",
401 ] 400 ]
402 } 401 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698