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 { | 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 Loading... |
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 } |
OLD | NEW |