| Index: third_party/WebKit/Source/controller/BUILD.gn | 
| diff --git a/third_party/WebKit/Source/controller/BUILD.gn b/third_party/WebKit/Source/controller/BUILD.gn | 
| index dbcd69337de86d8f7f14a215719b5bc1f8a42210..ac3865acc7363c70f7bdc07a001fac13aa16816f 100644 | 
| --- a/third_party/WebKit/Source/controller/BUILD.gn | 
| +++ b/third_party/WebKit/Source/controller/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("controller") { | 
| +jumbo_component("controller") { | 
| output_name = "blink_controller" | 
|  | 
| deps = [ | 
| @@ -57,7 +58,7 @@ group("webkit_unit_tests_data") { | 
| ] | 
| } | 
|  | 
| -test("webkit_unit_tests") { | 
| +jumbo_test("webkit_unit_tests") { | 
| visibility = []  # Allow re-assignment of list. | 
| visibility = [ "*" ] | 
|  | 
| @@ -66,6 +67,22 @@ test("webkit_unit_tests") { | 
| ] | 
| sources += bindings_unittest_files | 
|  | 
| +  jumbo_excluded_sources = [ | 
| +    # 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 = [ | 
| ":controller", | 
| "//base", | 
|  |