| Index: third_party/WebKit/Source/web/BUILD.gn
|
| diff --git a/third_party/WebKit/Source/web/BUILD.gn b/third_party/WebKit/Source/web/BUILD.gn
|
| index 3f18b26f3c50603eb6d46af0d9cfc615ac0ed339..8e7dfa8bed00aba3bb9814d5634cfe137f16a595 100644
|
| --- a/third_party/WebKit/Source/web/BUILD.gn
|
| +++ b/third_party/WebKit/Source/web/BUILD.gn
|
| @@ -2,6 +2,7 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| +import("//build/config/jumbo.gni")
|
| import("//build/config/ui.gni")
|
| import("//testing/test.gni")
|
| import("//third_party/WebKit/Source/bindings/bindings.gni")
|
| @@ -11,7 +12,7 @@ import("//third_party/WebKit/Source/modules/modules.gni")
|
|
|
| visibility = [ "//third_party/WebKit/*" ]
|
|
|
| -component("web") {
|
| +jumbo_component("web") {
|
| output_name = "blink_web"
|
|
|
| deps = [
|
| @@ -72,7 +73,8 @@ group("webkit_unit_tests_data") {
|
| ]
|
| }
|
|
|
| -test("webkit_unit_tests") {
|
| +jumbo_target("webkit_unit_tests") {
|
| + target_type = "test"
|
| visibility = [] # Allow re-assignment of list.
|
| visibility = [ "*" ]
|
|
|
| @@ -95,6 +97,25 @@ test("webkit_unit_tests") {
|
| ]
|
| sources += bindings_unittest_files
|
|
|
| + jumbo_excluded_sources = [
|
| + # Too many ScriptExecutionCallbackHelper
|
| + "tests/WebFrameTest.cpp",
|
| +
|
| + # Explicit specialization of
|
| + # blink::NativeValueTraits<blink::IDLByte after instantiation.
|
| + "//third_party/WebKit/Source/bindings/core/v8/NativeValueTraitsImplTest.cpp",
|
| + "//third_party/WebKit/Source/bindings/core/v8/V8BindingTest.cpp",
|
| +
|
| + # Too many class Function.
|
| + "//third_party/WebKit/Source/bindings/core/v8/ScriptPromiseTest.cpp",
|
| +
|
| + # Too many GarbageCollectedHolder
|
| + "//third_party/WebKit/Source/bindings/core/v8/ToV8Test.cpp",
|
| +
|
| + # Too many SerializedValue
|
| + "//third_party/WebKit/Source/bindings/modules/v8/serialization/V8ScriptValueSerializerForModulesTest.cpp",
|
| + ]
|
| +
|
| deps = [
|
| ":web",
|
| "//base",
|
|
|