| 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 21 matching lines...) Expand all Loading... |
| 32 source_set("common") { | 32 source_set("common") { |
| 33 sources = rebase_path(scheduler_gypi_values.scheduler_common_sources, | 33 sources = rebase_path(scheduler_gypi_values.scheduler_common_sources, |
| 34 ".", | 34 ".", |
| 35 "//components/scheduler") | 35 "//components/scheduler") |
| 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 "base/delayed_task_delegate_unittest.cc", |
| 42 "base/task_queue_manager_delegate_for_test.cc", | 43 "base/task_queue_manager_delegate_for_test.cc", |
| 43 "base/task_queue_manager_delegate_for_test.h", | 44 "base/task_queue_manager_delegate_for_test.h", |
| 44 "base/task_queue_manager_unittest.cc", | 45 "base/task_queue_manager_unittest.cc", |
| 45 "base/task_queue_selector_unittest.cc", | 46 "base/task_queue_selector_unittest.cc", |
| 46 "base/task_queue_sets_unittest.cc", | 47 "base/task_queue_sets_unittest.cc", |
| 47 "base/test_always_fail_time_source.cc", | 48 "base/test_always_fail_time_source.cc", |
| 48 "base/test_always_fail_time_source.h", | 49 "base/test_always_fail_time_source.h", |
| 49 "base/test_time_source.cc", | 50 "base/test_time_source.cc", |
| 50 "base/test_time_source.h", | 51 "base/test_time_source.h", |
| 51 "child/idle_helper_unittest.cc", | 52 "child/idle_helper_unittest.cc", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 77 # GYP version: components/scheduler.gypi:scheduler_test_support | 78 # GYP version: components/scheduler.gypi:scheduler_test_support |
| 78 static_library("test_support") { | 79 static_library("test_support") { |
| 79 sources = rebase_path(scheduler_gypi_values.scheduler_test_support_sources, | 80 sources = rebase_path(scheduler_gypi_values.scheduler_test_support_sources, |
| 80 ".", | 81 ".", |
| 81 "//components/scheduler") | 82 "//components/scheduler") |
| 82 | 83 |
| 83 deps = [ | 84 deps = [ |
| 84 "//base", | 85 "//base", |
| 85 ] | 86 ] |
| 86 } | 87 } |
| OLD | NEW |