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

Side by Side Diff: tools/battor_agent/battor_agent.gyp

Issue 1645103002: tools/battor_agent: Adds battor_agent_unittests to waterfall (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 | « tools/battor_agent/BUILD.gn ('k') | tools/battor_agent/battor_agent_unittests.isolate » ('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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'battor_agent', 8 'target_name': 'battor_agent',
9 'type': 'executable', 9 'type': 'executable',
10 'include_dirs': [ 10 'include_dirs': [
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 '../../third_party/mojo/mojo_public.gyp:mojo_public', 62 '../../third_party/mojo/mojo_public.gyp:mojo_public',
63 ], 63 ],
64 'sources': [ 64 'sources': [
65 'battor_agent_unittest.cc', 65 'battor_agent_unittest.cc',
66 'battor_connection_impl_unittest.cc', 66 'battor_connection_impl_unittest.cc',
67 'battor_protocol_types_unittest.cc', 67 'battor_protocol_types_unittest.cc',
68 'battor_sample_converter_unittest.cc', 68 'battor_sample_converter_unittest.cc',
69 ], 69 ],
70 }, 70 },
71 ], 71 ],
72 'conditions': [
73 ['test_isolation_mode != "noop"', {
74 'targets': [
75 {
76 'target_name': 'battor_agent_unittests_run',
77 'type': 'none',
78 'dependencies': [
79 'battor_agent_unittests',
80 ],
81 'includes': [
82 '../../build/isolate.gypi',
83 ],
84 'sources': [
85 'battor_agent_unittests.isolate',
86 ],
87 },
88 ],
89 }],
90 ],
72 } 91 }
OLDNEW
« no previous file with comments | « tools/battor_agent/BUILD.gn ('k') | tools/battor_agent/battor_agent_unittests.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698