OLD | NEW |
1 # Copyright (c) 2011 The LevelDB Authors. All rights reserved. | 1 # Copyright (c) 2011 The LevelDB 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. See the AUTHORS file for names of contributors. | 3 # found in the LICENSE file. See the AUTHORS file for names of contributors. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'use_snappy%': 1, | 7 'use_snappy%': 1, |
8 }, | 8 }, |
9 'conditions': [ | 9 'conditions': [ |
10 ['OS == "android" and android_webview_build == 1', { | 10 ['OS == "android" and android_webview_build == 1', { |
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 'target_name': 'leveldb_corruption_test', | 265 'target_name': 'leveldb_corruption_test', |
266 'type': 'executable', | 266 'type': 'executable', |
267 'dependencies': [ | 267 'dependencies': [ |
268 'leveldb_testutil', | 268 'leveldb_testutil', |
269 ], | 269 ], |
270 'sources': [ | 270 'sources': [ |
271 'src/db/corruption_test.cc', | 271 'src/db/corruption_test.cc', |
272 ], | 272 ], |
273 }, | 273 }, |
274 { | 274 { |
| 275 'target_name': 'leveldb_fault_injection_test', |
| 276 'type': 'executable', |
| 277 'dependencies': [ |
| 278 'leveldb_testutil', |
| 279 ], |
| 280 'sources': [ |
| 281 'src/db/fault_injection_test.cc', |
| 282 ], |
| 283 }, |
| 284 { |
| 285 'target_name': 'leveldb_recovery_test', |
| 286 'type': 'executable', |
| 287 'dependencies': [ |
| 288 'leveldb_testutil', |
| 289 ], |
| 290 'sources': [ |
| 291 'src/db/recovery_test.cc', |
| 292 ], |
| 293 }, |
| 294 { |
275 'target_name': 'leveldb_crc32c_test', | 295 'target_name': 'leveldb_crc32c_test', |
276 'type': 'executable', | 296 'type': 'executable', |
277 'dependencies': [ | 297 'dependencies': [ |
278 'leveldb_testutil', | 298 'leveldb_testutil', |
279 ], | 299 ], |
280 'sources': [ | 300 'sources': [ |
281 'src/util/crc32c_test.cc', | 301 'src/util/crc32c_test.cc', |
282 ], | 302 ], |
283 }, | 303 }, |
284 { | 304 { |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
402 ], | 422 ], |
403 }, | 423 }, |
404 ], | 424 ], |
405 } | 425 } |
406 | 426 |
407 # Local Variables: | 427 # Local Variables: |
408 # tab-width:2 | 428 # tab-width:2 |
409 # indent-tabs-mode:nil | 429 # indent-tabs-mode:nil |
410 # End: | 430 # End: |
411 # vim: set expandtab tabstop=2 shiftwidth=2: | 431 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |