| 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 d05b9bda86309e989235acb1f9a3f703234f0769..e21e0f69509ecd788c43d5ccc39ba82628852453 100644
|
| --- a/third_party/WebKit/Source/platform/BUILD.gn
|
| +++ b/third_party/WebKit/Source/platform/BUILD.gn
|
| @@ -1818,6 +1818,28 @@ test("blink_platform_unittests") {
|
| include_dirs = [ "$root_gen_dir/blink" ]
|
| }
|
|
|
| +test("image_decode_bench") {
|
| + visibility = [] # Allow re-assignment of list.
|
| + visibility = [ "*" ]
|
| +
|
| + sources = [
|
| + "testing/ImageDecodeBench.cpp",
|
| + ]
|
| +
|
| + deps = [
|
| + ":blink_common",
|
| + ":platform",
|
| + "//third_party/WebKit/Source/wtf",
|
| + ]
|
| +
|
| + configs += [
|
| + "//third_party/WebKit/Source/wtf:wtf_config",
|
| + "//third_party/WebKit/Source:config",
|
| + ]
|
| +
|
| + defines = [ "INSIDE_BLINK" ]
|
| +}
|
| +
|
| test("blink_platform_perftests") {
|
| sources = [
|
| "scheduler/base/task_queue_manager_delegate_for_test.cc",
|
|
|