| 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 26 matching lines...) Expand all Loading... |
| 37 | 37 |
| 38 source_set("unit_tests") { | 38 source_set("unit_tests") { |
| 39 testonly = true | 39 testonly = true |
| 40 | 40 |
| 41 sources = [ | 41 sources = [ |
| 42 "child/nestable_task_runner_for_test.cc", | 42 "child/nestable_task_runner_for_test.cc", |
| 43 "child/nestable_task_runner_for_test.h", | 43 "child/nestable_task_runner_for_test.h", |
| 44 "child/prioritizing_task_queue_selector_unittest.cc", | 44 "child/prioritizing_task_queue_selector_unittest.cc", |
| 45 "child/scheduler_helper_unittest.cc", | 45 "child/scheduler_helper_unittest.cc", |
| 46 "child/task_queue_manager_unittest.cc", | 46 "child/task_queue_manager_unittest.cc", |
| 47 "child/test_always_fail_time_source.cc", |
| 48 "child/test_always_fail_time_source.h", |
| 47 "child/test_time_source.cc", | 49 "child/test_time_source.cc", |
| 48 "child/test_time_source.h", | 50 "child/test_time_source.h", |
| 49 "child/webthread_impl_for_worker_scheduler_unittest.cc", | 51 "child/webthread_impl_for_worker_scheduler_unittest.cc", |
| 50 "child/worker_scheduler_impl_unittest.cc", | 52 "child/worker_scheduler_impl_unittest.cc", |
| 51 "renderer/deadline_task_runner_unittest.cc", | 53 "renderer/deadline_task_runner_unittest.cc", |
| 52 "renderer/renderer_scheduler_impl_unittest.cc", | 54 "renderer/renderer_scheduler_impl_unittest.cc", |
| 53 "renderer/webthread_impl_for_renderer_scheduler_unittest.cc", | 55 "renderer/webthread_impl_for_renderer_scheduler_unittest.cc", |
| 54 ] | 56 ] |
| 55 | 57 |
| 56 deps = [ | 58 deps = [ |
| 57 ":scheduler", | 59 ":scheduler", |
| 58 "//cc:test_support", | 60 "//cc:test_support", |
| 59 "//testing/gmock", | 61 "//testing/gmock", |
| 60 "//testing/gtest", | 62 "//testing/gtest", |
| 61 ] | 63 ] |
| 62 } | 64 } |
| OLD | NEW |