| 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 25 matching lines...) Expand all Loading... |
| 36 } | 36 } |
| 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/scheduler_task_runner_delegate_for_test.cc", | |
| 47 "child/scheduler_task_runner_delegate_for_test.h", | |
| 48 "child/scheduler_task_runner_delegate_impl_unittest.cc", | |
| 49 "child/task_queue_manager_unittest.cc", | 46 "child/task_queue_manager_unittest.cc", |
| 50 "child/test_time_source.cc", | 47 "child/test_time_source.cc", |
| 51 "child/test_time_source.h", | 48 "child/test_time_source.h", |
| 52 "child/webthread_impl_for_worker_scheduler_unittest.cc", | 49 "child/webthread_impl_for_worker_scheduler_unittest.cc", |
| 53 "child/worker_scheduler_impl_unittest.cc", | 50 "child/worker_scheduler_impl_unittest.cc", |
| 54 "renderer/deadline_task_runner_unittest.cc", | 51 "renderer/deadline_task_runner_unittest.cc", |
| 55 "renderer/renderer_scheduler_impl_unittest.cc", | 52 "renderer/renderer_scheduler_impl_unittest.cc", |
| 56 "renderer/webthread_impl_for_renderer_scheduler_unittest.cc", | 53 "renderer/webthread_impl_for_renderer_scheduler_unittest.cc", |
| 57 "test/test_always_fail_time_source.cc", | 54 "test/test_always_fail_time_source.cc", |
| 58 "test/test_always_fail_time_source.h", | 55 "test/test_always_fail_time_source.h", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 69 # GYP version: components/scheduler.gypi:scheduler_test_support | 66 # GYP version: components/scheduler.gypi:scheduler_test_support |
| 70 static_library("test_support") { | 67 static_library("test_support") { |
| 71 sources = rebase_path(scheduler_gypi_values.scheduler_test_support_sources, | 68 sources = rebase_path(scheduler_gypi_values.scheduler_test_support_sources, |
| 72 ".", | 69 ".", |
| 73 "//components/scheduler") | 70 "//components/scheduler") |
| 74 | 71 |
| 75 deps = [ | 72 deps = [ |
| 76 "//base", | 73 "//base", |
| 77 ] | 74 ] |
| 78 } | 75 } |
| OLD | NEW |