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

Side by Side Diff: components/scheduler/scheduler.gyp

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 | « components/scheduler/BUILD.gn ('k') | components/scheduler/scheduler.gypi » ('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 { 5 {
6 'variables': { 6 'variables': {
7 # This turns on e.g. the filename-based detection of which 7 # This turns on e.g. the filename-based detection of which
8 # platforms to include source files on (e.g. files ending in 8 # platforms to include source files on (e.g. files ending in
9 # _mac.h or _mac.cc are only compiled on MacOSX). 9 # _mac.h or _mac.cc are only compiled on MacOSX).
10 'chromium_code': 1, 10 'chromium_code': 1,
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 ], 43 ],
44 # Disable c4267 warnings until we fix size_t to int truncations. 44 # Disable c4267 warnings until we fix size_t to int truncations.
45 'msvs_disabled_warnings': [ 4267, ], 45 'msvs_disabled_warnings': [ 4267, ],
46 'sources': [ 46 'sources': [
47 '<@(scheduler_sources)', 47 '<@(scheduler_sources)',
48 ], 48 ],
49 'export_dependent_settings': [ 49 'export_dependent_settings': [
50 '../../third_party/WebKit/public/blink.gyp:blink', 50 '../../third_party/WebKit/public/blink.gyp:blink',
51 ], 51 ],
52 }, 52 },
53 {
54 # GN version: //components/scheduler:test_support
55 'target_name': 'scheduler_test_support',
56 'type': 'static_library',
57 'include_dirs': [
58 '../..',
59 ],
60 'sources': [
61 '<@(scheduler_test_support_sources)',
62 ],
63 },
53 ], 64 ],
54 } 65 }
OLDNEW
« no previous file with comments | « components/scheduler/BUILD.gn ('k') | components/scheduler/scheduler.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698