Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Side by Side Diff: components/scheduler/BUILD.gn

Issue 1245193003: scheduler: Add a missing unit test to BUILD.gn (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 "child/idle_helper_unittest.cc",
42 "child/nestable_task_runner_for_test.cc", 43 "child/nestable_task_runner_for_test.cc",
43 "child/nestable_task_runner_for_test.h", 44 "child/nestable_task_runner_for_test.h",
44 "child/prioritizing_task_queue_selector_unittest.cc", 45 "child/prioritizing_task_queue_selector_unittest.cc",
45 "child/scheduler_helper_unittest.cc", 46 "child/scheduler_helper_unittest.cc",
46 "child/scheduler_task_runner_delegate_for_test.cc", 47 "child/scheduler_task_runner_delegate_for_test.cc",
47 "child/scheduler_task_runner_delegate_for_test.h", 48 "child/scheduler_task_runner_delegate_for_test.h",
48 "child/scheduler_task_runner_delegate_impl_unittest.cc", 49 "child/scheduler_task_runner_delegate_impl_unittest.cc",
49 "child/task_queue_manager_unittest.cc", 50 "child/task_queue_manager_unittest.cc",
50 "child/test_time_source.cc", 51 "child/test_time_source.cc",
51 "child/test_time_source.h", 52 "child/test_time_source.h",
(...skipping 17 matching lines...) Expand all
69 # GYP version: components/scheduler.gypi:scheduler_test_support 70 # GYP version: components/scheduler.gypi:scheduler_test_support
70 static_library("test_support") { 71 static_library("test_support") {
71 sources = rebase_path(scheduler_gypi_values.scheduler_test_support_sources, 72 sources = rebase_path(scheduler_gypi_values.scheduler_test_support_sources,
72 ".", 73 ".",
73 "//components/scheduler") 74 "//components/scheduler")
74 75
75 deps = [ 76 deps = [
76 "//base", 77 "//base",
77 ] 78 ]
78 } 79 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698