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

Unified Diff: components/scheduler/scheduler.gyp

Issue 1424053002: Adds a flag to support "Virtual Time" to the blink scheduler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 5 years, 1 month 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: components/scheduler/scheduler.gyp
diff --git a/components/scheduler/scheduler.gyp b/components/scheduler/scheduler.gyp
index aa9a15a171c34412c7a85eaadc87407276732aa3..cffc0726e6e469422f18225ea61c9909c9fabe97 100644
--- a/components/scheduler/scheduler.gyp
+++ b/components/scheduler/scheduler.gyp
@@ -14,10 +14,22 @@
],
'targets': [
{
+ # GN version: //components/scheduler:common
+ 'target_name': 'scheduler_common',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '../..',
+ ],
+ 'sources': [
+ '<@(scheduler_common_sources)',
+ ],
+ },
+ {
# GN version: //components/scheduler:scheduler
'target_name': 'scheduler',
'type': '<(component)',
'dependencies': [
+ 'scheduler_common',
'../../base/base.gyp:base',
'../../cc/cc.gyp:cc',
'../../third_party/WebKit/public/blink.gyp:blink',
« no previous file with comments | « components/scheduler/renderer/webthread_impl_for_renderer_scheduler_unittest.cc ('k') | components/scheduler/scheduler.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698