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

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

Issue 2971683003: Change code to make jumbo exceptions unnecessary in core/html (Closed)
Patch Set: Removed testing code after showing that it worked Created 3 years, 5 months 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("//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 603 matching lines...) Expand 10 before | Expand all | Expand 10 after
614 "track/vtt/VTTParser.h", 614 "track/vtt/VTTParser.h",
615 "track/vtt/VTTRegion.cpp", 615 "track/vtt/VTTRegion.cpp",
616 "track/vtt/VTTRegion.h", 616 "track/vtt/VTTRegion.h",
617 "track/vtt/VTTScanner.cpp", 617 "track/vtt/VTTScanner.cpp",
618 "track/vtt/VTTScanner.h", 618 "track/vtt/VTTScanner.h",
619 "track/vtt/VTTToken.h", 619 "track/vtt/VTTToken.h",
620 "track/vtt/VTTTokenizer.cpp", 620 "track/vtt/VTTTokenizer.cpp",
621 "track/vtt/VTTTokenizer.h", 621 "track/vtt/VTTTokenizer.h",
622 ] 622 ]
623 623
624 jumbo_excluded_sources = [ 624 jumbo_excluded_sources = [ "canvas/CanvasRenderingContext.cpp" ] # https://cr bug.com/716395
625 "canvas/CanvasRenderingContext.cpp", # https://crbug.com/716395
626
627 # Does ugly things with undef (patch incoming)
628 "parser/HTMLTokenizer.cpp",
629
630 # kSupportedTokens in both HTMLMediaElementControlsList.cpp
631 # and HTMLIFrameElementSandbox.cpp
632 "HTMLIFrameElementSandbox.cpp",
633 ]
634 625
635 configs += [ 626 configs += [
636 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 627 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
637 "//build/config/compiler:no_size_t_to_int_warning", 628 "//build/config/compiler:no_size_t_to_int_warning",
638 ] 629 ]
639 } 630 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698