| Index: third_party/WebKit/Source/platform/BUILD.gn
 | 
| diff --git a/third_party/WebKit/Source/platform/BUILD.gn b/third_party/WebKit/Source/platform/BUILD.gn
 | 
| index 92e9fcdd63f903de65c52004f478cb70015fd41c..38e8f8b34dc3f366b0785e8655ffca1306ba7568 100644
 | 
| --- a/third_party/WebKit/Source/platform/BUILD.gn
 | 
| +++ b/third_party/WebKit/Source/platform/BUILD.gn
 | 
| @@ -611,6 +611,31 @@ test("blink_platform_unittests") {
 | 
|    include_dirs = [ "$root_gen_dir/blink" ]
 | 
|  }
 | 
|  
 | 
| +test("blink_platform_perftests") {
 | 
| +  sources = [
 | 
| +    "scheduler/base/task_queue_manager_delegate_for_test.cc",
 | 
| +    "scheduler/base/task_queue_manager_delegate_for_test.h",
 | 
| +    "scheduler/base/task_queue_manager_perftest.cc",
 | 
| +  ]
 | 
| +
 | 
| +  configs += [
 | 
| +    # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
 | 
| +    "//build/config/compiler:no_size_t_to_int_warning",
 | 
| +    "//third_party/WebKit/Source/wtf:wtf_config",
 | 
| +    "//third_party/WebKit/Source:config",
 | 
| +  ]
 | 
| +
 | 
| +  deps = [
 | 
| +    ":blink_common",
 | 
| +    ":platform",
 | 
| +    "//base",
 | 
| +    "//base/test:test_support",
 | 
| +    "//base/test:test_support_perf",
 | 
| +    "//testing/gtest",
 | 
| +    "//testing/perf",
 | 
| +  ]
 | 
| +}
 | 
| +
 | 
|  group("blink_platform_unittests_data") {
 | 
|    data = [
 | 
|      "testing/data/",
 | 
| 
 |