| 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 |
| 11 sources = [ | 11 sources = [ |
| 12 "AutoplayExperimentHelper.cpp", | |
| 13 "AutoplayExperimentHelper.h", | |
| 14 "AutoplayUmaHelper.cpp", | 12 "AutoplayUmaHelper.cpp", |
| 15 "AutoplayUmaHelper.h", | 13 "AutoplayUmaHelper.h", |
| 16 "ClassList.cpp", | 14 "ClassList.cpp", |
| 17 "ClassList.h", | 15 "ClassList.h", |
| 18 "CrossOriginAttribute.cpp", | 16 "CrossOriginAttribute.cpp", |
| 19 "CrossOriginAttribute.h", | 17 "CrossOriginAttribute.h", |
| 20 "DocumentNameCollection.cpp", | 18 "DocumentNameCollection.cpp", |
| 21 "DocumentNameCollection.h", | 19 "DocumentNameCollection.h", |
| 22 "FormAssociatedElement.cpp", | 20 "FormAssociatedElement.cpp", |
| 23 "FormData.cpp", | 21 "FormData.cpp", |
| (...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 } |
| OLD | NEW |