| 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("//build/split_static_library.gni") | 5 import("//build/split_static_library.gni") |
| 6 import("//third_party/WebKit/Source/core/core.gni") | 6 import("//third_party/WebKit/Source/core/core.gni") |
| 7 | 7 |
| 8 blink_core_sources("html") { | 8 blink_core_sources("html") { |
| 9 split_count = 5 | 9 split_count = 5 |
| 10 | 10 |
| (...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 407 "parser/HTMLToken.h", | 407 "parser/HTMLToken.h", |
| 408 "parser/HTMLTokenizer.cpp", | 408 "parser/HTMLTokenizer.cpp", |
| 409 "parser/HTMLTokenizer.h", | 409 "parser/HTMLTokenizer.h", |
| 410 "parser/HTMLTreeBuilder.cpp", | 410 "parser/HTMLTreeBuilder.cpp", |
| 411 "parser/HTMLTreeBuilder.h", | 411 "parser/HTMLTreeBuilder.h", |
| 412 "parser/HTMLTreeBuilderSimulator.cpp", | 412 "parser/HTMLTreeBuilderSimulator.cpp", |
| 413 "parser/HTMLTreeBuilderSimulator.h", | 413 "parser/HTMLTreeBuilderSimulator.h", |
| 414 "parser/HTMLViewSourceParser.cpp", | 414 "parser/HTMLViewSourceParser.cpp", |
| 415 "parser/HTMLViewSourceParser.h", | 415 "parser/HTMLViewSourceParser.h", |
| 416 "parser/InputStreamPreprocessor.h", | 416 "parser/InputStreamPreprocessor.h", |
| 417 "parser/MarkupTokenizerInlines.h", |
| 417 "parser/NestingLevelIncrementer.h", | 418 "parser/NestingLevelIncrementer.h", |
| 418 "parser/PreloadRequest.cpp", | 419 "parser/PreloadRequest.cpp", |
| 419 "parser/ResourcePreloader.cpp", | 420 "parser/ResourcePreloader.cpp", |
| 420 "parser/TextDocumentParser.cpp", | 421 "parser/TextDocumentParser.cpp", |
| 421 "parser/TextDocumentParser.h", | 422 "parser/TextDocumentParser.h", |
| 422 "parser/TextResourceDecoder.cpp", | 423 "parser/TextResourceDecoder.cpp", |
| 423 "parser/TextResourceDecoder.h", | 424 "parser/TextResourceDecoder.h", |
| 424 "parser/TokenizedChunkQueue.cpp", | 425 "parser/TokenizedChunkQueue.cpp", |
| 425 "parser/TokenizedChunkQueue.h", | 426 "parser/TokenizedChunkQueue.h", |
| 426 "parser/XSSAuditor.cpp", | 427 "parser/XSSAuditor.cpp", |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 509 "track/vtt/VTTToken.h", | 510 "track/vtt/VTTToken.h", |
| 510 "track/vtt/VTTTokenizer.cpp", | 511 "track/vtt/VTTTokenizer.cpp", |
| 511 "track/vtt/VTTTokenizer.h", | 512 "track/vtt/VTTTokenizer.h", |
| 512 ] | 513 ] |
| 513 | 514 |
| 514 configs += [ | 515 configs += [ |
| 515 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 516 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 516 "//build/config/compiler:no_size_t_to_int_warning", | 517 "//build/config/compiler:no_size_t_to_int_warning", |
| 517 ] | 518 ] |
| 518 } | 519 } |
| OLD | NEW |