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

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

Issue 2580793005: Split the CSSParserContext class out of CSSParserMode into its own file. (Closed)
Patch Set: fix compile 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 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 "invalidation/StyleInvalidator.cpp", 307 "invalidation/StyleInvalidator.cpp",
308 "invalidation/StyleInvalidator.h", 308 "invalidation/StyleInvalidator.h",
309 "parser/CSSAtRuleID.cpp", 309 "parser/CSSAtRuleID.cpp",
310 "parser/CSSAtRuleID.h", 310 "parser/CSSAtRuleID.h",
311 "parser/CSSLazyParsingState.cpp", 311 "parser/CSSLazyParsingState.cpp",
312 "parser/CSSLazyParsingState.h", 312 "parser/CSSLazyParsingState.h",
313 "parser/CSSLazyPropertyParserImpl.cpp", 313 "parser/CSSLazyPropertyParserImpl.cpp",
314 "parser/CSSLazyPropertyParserImpl.h", 314 "parser/CSSLazyPropertyParserImpl.h",
315 "parser/CSSParser.cpp", 315 "parser/CSSParser.cpp",
316 "parser/CSSParser.h", 316 "parser/CSSParser.h",
317 "parser/CSSParserContext.cpp",
318 "parser/CSSParserContext.h",
317 "parser/CSSParserFastPaths.cpp", 319 "parser/CSSParserFastPaths.cpp",
318 "parser/CSSParserFastPaths.h", 320 "parser/CSSParserFastPaths.h",
319 "parser/CSSParserImpl.cpp", 321 "parser/CSSParserImpl.cpp",
320 "parser/CSSParserImpl.h", 322 "parser/CSSParserImpl.h",
321 "parser/CSSParserMode.cpp",
322 "parser/CSSParserMode.h", 323 "parser/CSSParserMode.h",
323 "parser/CSSParserObserverWrapper.cpp", 324 "parser/CSSParserObserverWrapper.cpp",
324 "parser/CSSParserSelector.cpp", 325 "parser/CSSParserSelector.cpp",
325 "parser/CSSParserSelector.h", 326 "parser/CSSParserSelector.h",
326 "parser/CSSParserToken.cpp", 327 "parser/CSSParserToken.cpp",
327 "parser/CSSParserTokenRange.cpp", 328 "parser/CSSParserTokenRange.cpp",
328 "parser/CSSParserTokenRange.h", 329 "parser/CSSParserTokenRange.h",
329 "parser/CSSPropertyParser.cpp", 330 "parser/CSSPropertyParser.cpp",
330 "parser/CSSPropertyParser.h", 331 "parser/CSSPropertyParser.h",
331 "parser/CSSPropertyParserHelpers.cpp", 332 "parser/CSSPropertyParserHelpers.cpp",
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 "resolver/TransformBuilder.h", 391 "resolver/TransformBuilder.h",
391 "resolver/ViewportStyleResolver.cpp", 392 "resolver/ViewportStyleResolver.cpp",
392 "resolver/ViewportStyleResolver.h", 393 "resolver/ViewportStyleResolver.h",
393 ] 394 ]
394 395
395 configs += [ 396 configs += [
396 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 397 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
397 "//build/config/compiler:no_size_t_to_int_warning", 398 "//build/config/compiler:no_size_t_to_int_warning",
398 ] 399 ]
399 } 400 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/ActiveStyleSheetsTest.cpp ('k') | third_party/WebKit/Source/core/css/CSSStyleSheet.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698