| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 "renderer/webthread_impl_for_renderer_scheduler_unittest.cc", | 53 "renderer/webthread_impl_for_renderer_scheduler_unittest.cc", |
| 54 ] | 54 ] |
| 55 | 55 |
| 56 deps = [ | 56 deps = [ |
| 57 ":scheduler", | 57 ":scheduler", |
| 58 "//cc:test_support", | 58 "//cc:test_support", |
| 59 "//testing/gmock", | 59 "//testing/gmock", |
| 60 "//testing/gtest", | 60 "//testing/gtest", |
| 61 ] | 61 ] |
| 62 } | 62 } |
| 63 |
| 64 # GYP version: components/scheduler.gypi:scheduler_test_support |
| 65 static_library("test_support") { |
| 66 sources = rebase_path(scheduler_gypi_values.scheduler_test_support_sources, |
| 67 ".", |
| 68 "//components/scheduler") |
| 69 |
| 70 deps = [ |
| 71 "//base", |
| 72 ] |
| 73 } |
| OLD | NEW |