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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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_time_source.cc", | 47 "child/test_time_source.cc", |
48 "child/test_time_source.h", | 48 "child/test_time_source.h", |
49 "child/webthread_impl_for_worker_scheduler_unittest.cc", | 49 "child/webthread_impl_for_worker_scheduler_unittest.cc", |
50 "child/worker_scheduler_impl_unittest.cc", | 50 "child/worker_scheduler_impl_unittest.cc", |
51 "renderer/deadline_task_runner_unittest.cc", | 51 "renderer/deadline_task_runner_unittest.cc", |
52 "renderer/renderer_scheduler_impl_unittest.cc", | 52 "renderer/renderer_scheduler_impl_unittest.cc", |
53 "renderer/webthread_impl_for_renderer_scheduler_unittest.cc", | 53 "renderer/webthread_impl_for_renderer_scheduler_unittest.cc", |
| 54 "test/test_always_fail_time_source.cc", |
| 55 "test/test_always_fail_time_source.h", |
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 } |
63 | 65 |
64 # GYP version: components/scheduler.gypi:scheduler_test_support | 66 # GYP version: components/scheduler.gypi:scheduler_test_support |
65 static_library("test_support") { | 67 static_library("test_support") { |
66 sources = rebase_path(scheduler_gypi_values.scheduler_test_support_sources, | 68 sources = rebase_path(scheduler_gypi_values.scheduler_test_support_sources, |
67 ".", | 69 ".", |
68 "//components/scheduler") | 70 "//components/scheduler") |
69 | 71 |
70 deps = [ | 72 deps = [ |
71 "//base", | 73 "//base", |
72 ] | 74 ] |
73 } | 75 } |
OLD | NEW |