| OLD | NEW |
| 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 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 369 "resolver/StyleAdjuster.h", | 369 "resolver/StyleAdjuster.h", |
| 370 "resolver/StyleBuilderConverter.cpp", | 370 "resolver/StyleBuilderConverter.cpp", |
| 371 "resolver/StyleBuilderConverter.h", | 371 "resolver/StyleBuilderConverter.h", |
| 372 "resolver/StyleBuilderCustom.cpp", | 372 "resolver/StyleBuilderCustom.cpp", |
| 373 "resolver/StyleResolver.cpp", | 373 "resolver/StyleResolver.cpp", |
| 374 "resolver/StyleResolver.h", | 374 "resolver/StyleResolver.h", |
| 375 "resolver/StyleResolverState.cpp", | 375 "resolver/StyleResolverState.cpp", |
| 376 "resolver/StyleResolverState.h", | 376 "resolver/StyleResolverState.h", |
| 377 "resolver/StyleResolverStats.cpp", | 377 "resolver/StyleResolverStats.cpp", |
| 378 "resolver/StyleResolverStats.h", | 378 "resolver/StyleResolverStats.h", |
| 379 "resolver/StyleRuleUsageTracker.cpp", |
| 380 "resolver/StyleRuleUsageTracker.h", |
| 379 "resolver/StyleSharingDepthScope.h", | 381 "resolver/StyleSharingDepthScope.h", |
| 380 "resolver/TransformBuilder.cpp", | 382 "resolver/TransformBuilder.cpp", |
| 381 "resolver/TransformBuilder.h", | 383 "resolver/TransformBuilder.h", |
| 382 "resolver/ViewportStyleResolver.cpp", | 384 "resolver/ViewportStyleResolver.cpp", |
| 383 "resolver/ViewportStyleResolver.h", | 385 "resolver/ViewportStyleResolver.h", |
| 384 ] | 386 ] |
| 385 | 387 |
| 386 configs += [ | 388 configs += [ |
| 387 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 389 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 388 "//build/config/compiler:no_size_t_to_int_warning", | 390 "//build/config/compiler:no_size_t_to_int_warning", |
| 389 ] | 391 ] |
| 390 } | 392 } |
| OLD | NEW |