| 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 target(core_link_large_target_type, "html") { | 8 blink_core_sources("html") { |
| 9 visibility = [ "//third_party/WebKit/Source/core/*" ] | 9 split_count = 5 |
| 10 | |
| 11 if (core_link_large_target_type == "split_static_library") { | |
| 12 split_count = 5 | |
| 13 } | |
| 14 | 10 |
| 15 sources = [ | 11 sources = [ |
| 16 "AutoplayExperimentHelper.cpp", | 12 "AutoplayExperimentHelper.cpp", |
| 17 "AutoplayExperimentHelper.h", | 13 "AutoplayExperimentHelper.h", |
| 18 "AutoplayUmaHelper.cpp", | 14 "AutoplayUmaHelper.cpp", |
| 19 "AutoplayUmaHelper.h", | 15 "AutoplayUmaHelper.h", |
| 20 "ClassList.cpp", | 16 "ClassList.cpp", |
| 21 "ClassList.h", | 17 "ClassList.h", |
| 22 "CrossOriginAttribute.cpp", | 18 "CrossOriginAttribute.cpp", |
| 23 "CrossOriginAttribute.h", | 19 "CrossOriginAttribute.h", |
| (...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 500 "track/vtt/VTTRegion.h", | 496 "track/vtt/VTTRegion.h", |
| 501 "track/vtt/VTTRegionList.cpp", | 497 "track/vtt/VTTRegionList.cpp", |
| 502 "track/vtt/VTTRegionList.h", | 498 "track/vtt/VTTRegionList.h", |
| 503 "track/vtt/VTTScanner.cpp", | 499 "track/vtt/VTTScanner.cpp", |
| 504 "track/vtt/VTTScanner.h", | 500 "track/vtt/VTTScanner.h", |
| 505 "track/vtt/VTTToken.h", | 501 "track/vtt/VTTToken.h", |
| 506 "track/vtt/VTTTokenizer.cpp", | 502 "track/vtt/VTTTokenizer.cpp", |
| 507 "track/vtt/VTTTokenizer.h", | 503 "track/vtt/VTTTokenizer.h", |
| 508 ] | 504 ] |
| 509 | 505 |
| 510 configs -= core_config_remove | |
| 511 configs += core_config_add | |
| 512 configs += [ | 506 configs += [ |
| 513 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 507 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 514 "//build/config/compiler:no_size_t_to_int_warning", | 508 "//build/config/compiler:no_size_t_to_int_warning", |
| 515 ] | 509 ] |
| 516 | |
| 517 deps = [ | |
| 518 "//third_party/WebKit/Source/core:prerequisites", | |
| 519 ] | |
| 520 } | 510 } |
| OLD | NEW |