| 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 import("//components/scheduler/scheduler.gni") | 5 import("//components/scheduler/scheduler.gni") |
| 6 | 6 |
| 7 # GYP version: components/scheduler.gypi:scheduler | 7 # GYP version: components/scheduler.gypi:scheduler |
| 8 component("scheduler") { | 8 component("scheduler") { |
| 9 sources = rebase_path(scheduler_gypi_values.scheduler_sources, | 9 sources = rebase_path(scheduler_gypi_values.scheduler_sources, |
| 10 ".", | 10 ".", |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 testonly = true | 35 testonly = true |
| 36 | 36 |
| 37 sources = [ | 37 sources = [ |
| 38 "child/nestable_task_runner_for_test.cc", | 38 "child/nestable_task_runner_for_test.cc", |
| 39 "child/nestable_task_runner_for_test.h", | 39 "child/nestable_task_runner_for_test.h", |
| 40 "child/prioritizing_task_queue_selector_unittest.cc", | 40 "child/prioritizing_task_queue_selector_unittest.cc", |
| 41 "child/scheduler_helper_unittest.cc", | 41 "child/scheduler_helper_unittest.cc", |
| 42 "child/task_queue_manager_unittest.cc", | 42 "child/task_queue_manager_unittest.cc", |
| 43 "child/test_time_source.cc", | 43 "child/test_time_source.cc", |
| 44 "child/test_time_source.h", | 44 "child/test_time_source.h", |
| 45 "child/webthread_impl_for_worker_scheduler_unittest.cc", |
| 45 "child/worker_scheduler_impl_unittest.cc", | 46 "child/worker_scheduler_impl_unittest.cc", |
| 46 "renderer/deadline_task_runner_unittest.cc", | 47 "renderer/deadline_task_runner_unittest.cc", |
| 47 "renderer/renderer_scheduler_impl_unittest.cc", | 48 "renderer/renderer_scheduler_impl_unittest.cc", |
| 49 "renderer/webthread_impl_for_renderer_scheduler_unittest.cc", |
| 48 ] | 50 ] |
| 49 | 51 |
| 50 deps = [ | 52 deps = [ |
| 51 ":scheduler", | 53 ":scheduler", |
| 52 "//cc:test_support", | 54 "//cc:test_support", |
| 53 "//testing/gmock", | 55 "//testing/gmock", |
| 54 "//testing/gtest", | 56 "//testing/gtest", |
| 55 ] | 57 ] |
| 56 } | 58 } |
| OLD | NEW |