Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(354)

Unified Diff: third_party/WebKit/Source/platform/BUILD.gn

Issue 2118903002: scheduler: Move the Blink scheduler into Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 7f6aa292430e4e4106c432c2f33fe71728c24b16..ffa75b77b5736d9e946c7d6c6c1a9a6ff0c02fb7 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/",

Powered by Google App Engine
This is Rietveld 408576698