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

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

Issue 1152623008: scheduler: Always create a real scheduler in unit tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remember the message loop binding. Created 5 years, 6 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 | components/scheduler/scheduler.gyp » ('j') | 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW
« no previous file with comments | « no previous file | components/scheduler/scheduler.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698