| 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 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 544 "track/vtt/VTTParser.h", | 544 "track/vtt/VTTParser.h", |
| 545 "track/vtt/VTTRegion.cpp", | 545 "track/vtt/VTTRegion.cpp", |
| 546 "track/vtt/VTTRegion.h", | 546 "track/vtt/VTTRegion.h", |
| 547 "track/vtt/VTTScanner.cpp", | 547 "track/vtt/VTTScanner.cpp", |
| 548 "track/vtt/VTTScanner.h", | 548 "track/vtt/VTTScanner.h", |
| 549 "track/vtt/VTTToken.h", | 549 "track/vtt/VTTToken.h", |
| 550 "track/vtt/VTTTokenizer.cpp", | 550 "track/vtt/VTTTokenizer.cpp", |
| 551 "track/vtt/VTTTokenizer.h", | 551 "track/vtt/VTTTokenizer.h", |
| 552 ] | 552 ] |
| 553 | 553 |
| 554 jumbo_excluded_sources = [ |
| 555 "canvas/CanvasRenderingContext.cpp", # https://crbug.com/716395 |
| 556 |
| 557 # Does ugly things with undef (patch incoming) |
| 558 "parser/HTMLTokenizer.cpp", |
| 559 |
| 560 # kSupportedTokens in both HTMLMediaElementControlsList.cpp |
| 561 # and HTMLIFrameElementSandbox.cpp |
| 562 "HTMLIFrameElementSandbox.cpp", |
| 563 ] |
| 564 |
| 554 configs += [ | 565 configs += [ |
| 555 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 566 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 556 "//build/config/compiler:no_size_t_to_int_warning", | 567 "//build/config/compiler:no_size_t_to_int_warning", |
| 557 ] | 568 ] |
| 558 } | 569 } |
| OLD | NEW |