| 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 "renderer/throttling_helper_unittest.cc", | 144 "renderer/throttling_helper_unittest.cc", |
| 145 "renderer/user_model_unittest.cc", | 145 "renderer/user_model_unittest.cc", |
| 146 "renderer/web_view_scheduler_impl_unittest.cc", | 146 "renderer/web_view_scheduler_impl_unittest.cc", |
| 147 "renderer/webthread_impl_for_renderer_scheduler_unittest.cc", | 147 "renderer/webthread_impl_for_renderer_scheduler_unittest.cc", |
| 148 ] | 148 ] |
| 149 | 149 |
| 150 deps = [ | 150 deps = [ |
| 151 ":scheduler", | 151 ":scheduler", |
| 152 "//base/test:test_support", | 152 "//base/test:test_support", |
| 153 "//cc:test_support", | 153 "//cc:test_support", |
| 154 "//components/test_runner:test_runner", |
| 154 "//testing/gmock", | 155 "//testing/gmock", |
| 155 "//testing/gtest", | 156 "//testing/gtest", |
| 156 ] | 157 ] |
| 157 } | 158 } |
| 158 | 159 |
| 159 # GYP version: components/scheduler.gypi:scheduler_test_support | 160 # GYP version: components/scheduler.gypi:scheduler_test_support |
| 160 source_set("test_support") { | 161 source_set("test_support") { |
| 161 testonly = true | 162 testonly = true |
| 162 | 163 |
| 163 sources = [ | 164 sources = [ |
| 164 "test/lazy_scheduler_message_loop_delegate_for_tests.cc", | 165 "test/lazy_scheduler_message_loop_delegate_for_tests.cc", |
| 165 "test/lazy_scheduler_message_loop_delegate_for_tests.h", | 166 "test/lazy_scheduler_message_loop_delegate_for_tests.h", |
| 166 "test/renderer_scheduler_test_support.cc", | 167 "test/renderer_scheduler_test_support.cc", |
| 167 "test/renderer_scheduler_test_support.h", | 168 "test/renderer_scheduler_test_support.h", |
| 168 ] | 169 ] |
| 169 | 170 |
| 170 deps = [ | 171 deps = [ |
| 171 "//third_party/WebKit/public:blink", | 172 "//third_party/WebKit/public:blink", |
| 172 ] | 173 ] |
| 173 | 174 |
| 174 public_deps = [ | 175 public_deps = [ |
| 175 ":scheduler", | 176 ":scheduler", |
| 176 "//base", | 177 "//base", |
| 177 ] | 178 ] |
| 178 } | 179 } |
| OLD | NEW |