| 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 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 531 "track/vtt/VTTParser.h", | 531 "track/vtt/VTTParser.h", |
| 532 "track/vtt/VTTRegion.cpp", | 532 "track/vtt/VTTRegion.cpp", |
| 533 "track/vtt/VTTRegion.h", | 533 "track/vtt/VTTRegion.h", |
| 534 "track/vtt/VTTScanner.cpp", | 534 "track/vtt/VTTScanner.cpp", |
| 535 "track/vtt/VTTScanner.h", | 535 "track/vtt/VTTScanner.h", |
| 536 "track/vtt/VTTToken.h", | 536 "track/vtt/VTTToken.h", |
| 537 "track/vtt/VTTTokenizer.cpp", | 537 "track/vtt/VTTTokenizer.cpp", |
| 538 "track/vtt/VTTTokenizer.h", | 538 "track/vtt/VTTTokenizer.h", |
| 539 ] | 539 ] |
| 540 | 540 |
| 541 jumbo_excluded_sources = [ |
| 542 # Does ugly things with undef (patch incoming) |
| 543 "parser/HTMLTokenizer.cpp", |
| 544 ] |
| 545 |
| 541 configs += [ | 546 configs += [ |
| 542 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 547 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 543 "//build/config/compiler:no_size_t_to_int_warning", | 548 "//build/config/compiler:no_size_t_to_int_warning", |
| 544 ] | 549 ] |
| 545 } | 550 } |
| OLD | NEW |