| 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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 "MediaQueryList.cpp", | 187 "MediaQueryList.cpp", |
| 188 "MediaQueryList.h", | 188 "MediaQueryList.h", |
| 189 "MediaQueryListEvent.h", | 189 "MediaQueryListEvent.h", |
| 190 "MediaQueryListListener.cpp", | 190 "MediaQueryListListener.cpp", |
| 191 "MediaQueryListListener.h", | 191 "MediaQueryListListener.h", |
| 192 "MediaQueryMatcher.cpp", | 192 "MediaQueryMatcher.cpp", |
| 193 "MediaQueryMatcher.h", | 193 "MediaQueryMatcher.h", |
| 194 "MediaValues.cpp", | 194 "MediaValues.cpp", |
| 195 "MediaValuesCached.cpp", | 195 "MediaValuesCached.cpp", |
| 196 "MediaValuesDynamic.cpp", | 196 "MediaValuesDynamic.cpp", |
| 197 "MediaValuesInitialViewport.cpp", |
| 198 "MediaValuesInitialViewport.h", |
| 197 "PageRuleCollector.cpp", | 199 "PageRuleCollector.cpp", |
| 198 "PageRuleCollector.h", | 200 "PageRuleCollector.h", |
| 199 "PropertyRegistration.cpp", | 201 "PropertyRegistration.cpp", |
| 200 "PropertyRegistration.h", | 202 "PropertyRegistration.h", |
| 201 "PropertyRegistry.cpp", | 203 "PropertyRegistry.cpp", |
| 202 "PropertyRegistry.h", | 204 "PropertyRegistry.h", |
| 203 "PropertySetCSSStyleDeclaration.cpp", | 205 "PropertySetCSSStyleDeclaration.cpp", |
| 204 "PropertySetCSSStyleDeclaration.h", | 206 "PropertySetCSSStyleDeclaration.h", |
| 205 "PseudoStyleRequest.h", | 207 "PseudoStyleRequest.h", |
| 206 "RemoteFontFaceSource.cpp", | 208 "RemoteFontFaceSource.cpp", |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 371 "resolver/TransformBuilder.h", | 373 "resolver/TransformBuilder.h", |
| 372 "resolver/ViewportStyleResolver.cpp", | 374 "resolver/ViewportStyleResolver.cpp", |
| 373 "resolver/ViewportStyleResolver.h", | 375 "resolver/ViewportStyleResolver.h", |
| 374 ] | 376 ] |
| 375 | 377 |
| 376 configs += [ | 378 configs += [ |
| 377 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 379 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 378 "//build/config/compiler:no_size_t_to_int_warning", | 380 "//build/config/compiler:no_size_t_to_int_warning", |
| 379 ] | 381 ] |
| 380 } | 382 } |
| OLD | NEW |