| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 'courgette_lib_sources': [ | 8 'courgette_lib_sources': [ |
| 9 'adjustment_method.cc', | 9 'adjustment_method.cc', |
| 10 'adjustment_method_2.cc', | 10 'adjustment_method_2.cc', |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 'action': [ | 206 'action': [ |
| 207 'python', | 207 'python', |
| 208 '../build/cp.py', | 208 '../build/cp.py', |
| 209 '<@(_inputs)', | 209 '<@(_inputs)', |
| 210 '<@(_outputs)' | 210 '<@(_outputs)' |
| 211 ], | 211 ], |
| 212 }], | 212 }], |
| 213 }, | 213 }, |
| 214 ], | 214 ], |
| 215 }], | 215 }], |
| 216 ['test_isolation_mode != "noop"', { | |
| 217 'targets': [ | |
| 218 { | |
| 219 'target_name': 'courgette_unittests_run', | |
| 220 'type': 'none', | |
| 221 'dependencies': [ | |
| 222 'courgette_unittests', | |
| 223 ], | |
| 224 'includes': [ | |
| 225 '../build/isolate.gypi', | |
| 226 ], | |
| 227 'sources': [ | |
| 228 'courgette_unittests.isolate', | |
| 229 ], | |
| 230 }, | |
| 231 ], | |
| 232 }], | |
| 233 ], | 216 ], |
| 234 } | 217 } |
| OLD | NEW |