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

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

Issue 2685943004: Remove TextTrack.regions and VTTRegionList (Closed)
Patch Set: Rebase Created 3 years, 10 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 484 matching lines...) Expand 10 before | Expand all | Expand 10 after
495 "track/vtt/BufferedLineReader.cpp", 495 "track/vtt/BufferedLineReader.cpp",
496 "track/vtt/BufferedLineReader.h", 496 "track/vtt/BufferedLineReader.h",
497 "track/vtt/VTTCue.cpp", 497 "track/vtt/VTTCue.cpp",
498 "track/vtt/VTTCue.h", 498 "track/vtt/VTTCue.h",
499 "track/vtt/VTTElement.cpp", 499 "track/vtt/VTTElement.cpp",
500 "track/vtt/VTTElement.h", 500 "track/vtt/VTTElement.h",
501 "track/vtt/VTTParser.cpp", 501 "track/vtt/VTTParser.cpp",
502 "track/vtt/VTTParser.h", 502 "track/vtt/VTTParser.h",
503 "track/vtt/VTTRegion.cpp", 503 "track/vtt/VTTRegion.cpp",
504 "track/vtt/VTTRegion.h", 504 "track/vtt/VTTRegion.h",
505 "track/vtt/VTTRegionList.cpp",
506 "track/vtt/VTTRegionList.h",
507 "track/vtt/VTTScanner.cpp", 505 "track/vtt/VTTScanner.cpp",
508 "track/vtt/VTTScanner.h", 506 "track/vtt/VTTScanner.h",
509 "track/vtt/VTTToken.h", 507 "track/vtt/VTTToken.h",
510 "track/vtt/VTTTokenizer.cpp", 508 "track/vtt/VTTTokenizer.cpp",
511 "track/vtt/VTTTokenizer.h", 509 "track/vtt/VTTTokenizer.h",
512 ] 510 ]
513 511
514 configs += [ 512 configs += [
515 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 513 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
516 "//build/config/compiler:no_size_t_to_int_warning", 514 "//build/config/compiler:no_size_t_to_int_warning",
517 ] 515 ]
518 } 516 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698