OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # GYP version: components/scheduler.gypi:scheduler | 5 # GYP version: components/scheduler.gypi:scheduler |
6 component("scheduler") { | 6 component("scheduler") { |
7 sources = [ | 7 sources = [ |
8 "base/cancelable_closure_holder.cc", | 8 "base/cancelable_closure_holder.cc", |
9 "base/cancelable_closure_holder.h", | 9 "base/cancelable_closure_holder.h", |
10 "base/enqueue_order.cc", | 10 "base/enqueue_order.cc", |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 ] | 156 ] |
157 } | 157 } |
158 | 158 |
159 # GYP version: components/scheduler.gypi:scheduler_test_support | 159 # GYP version: components/scheduler.gypi:scheduler_test_support |
160 source_set("test_support") { | 160 source_set("test_support") { |
161 testonly = true | 161 testonly = true |
162 | 162 |
163 sources = [ | 163 sources = [ |
164 "test/lazy_scheduler_message_loop_delegate_for_tests.cc", | 164 "test/lazy_scheduler_message_loop_delegate_for_tests.cc", |
165 "test/lazy_scheduler_message_loop_delegate_for_tests.h", | 165 "test/lazy_scheduler_message_loop_delegate_for_tests.h", |
| 166 "test/renderer_scheduler_test_support.cc", |
| 167 "test/renderer_scheduler_test_support.h", |
| 168 ] |
| 169 |
| 170 deps = [ |
| 171 "//third_party/WebKit/public:blink", |
166 ] | 172 ] |
167 | 173 |
168 public_deps = [ | 174 public_deps = [ |
169 ":scheduler", | 175 ":scheduler", |
170 "//base", | 176 "//base", |
171 ] | 177 ] |
172 } | 178 } |
OLD | NEW |