| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 defines = [ "LEVELDB_PLATFORM_CHROMIUM=1" ] | 7 defines = [ "LEVELDB_PLATFORM_CHROMIUM=1" ] |
| 8 | 8 |
| 9 config("leveldatabase_config") { | 9 config("leveldatabase_config") { |
| 10 include_dirs = [ | 10 include_dirs = [ |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 "src/util/arena.cc", | 99 "src/util/arena.cc", |
| 100 "src/util/arena.h", | 100 "src/util/arena.h", |
| 101 "src/util/bloom.cc", | 101 "src/util/bloom.cc", |
| 102 "src/util/cache.cc", | 102 "src/util/cache.cc", |
| 103 "src/util/coding.cc", | 103 "src/util/coding.cc", |
| 104 "src/util/coding.h", | 104 "src/util/coding.h", |
| 105 "src/util/comparator.cc", | 105 "src/util/comparator.cc", |
| 106 "src/util/crc32c.cc", | 106 "src/util/crc32c.cc", |
| 107 "src/util/crc32c.h", | 107 "src/util/crc32c.h", |
| 108 "src/util/env.cc", | 108 "src/util/env.cc", |
| 109 "src/util/env.h", |
| 109 "src/util/filter_policy.cc", | 110 "src/util/filter_policy.cc", |
| 110 "src/util/hash.cc", | 111 "src/util/hash.cc", |
| 111 "src/util/hash.h", | 112 "src/util/hash.h", |
| 112 "src/util/logging.cc", | 113 "src/util/logging.cc", |
| 113 "src/util/logging.h", | 114 "src/util/logging.h", |
| 114 "src/util/mutexlock.h", | 115 "src/util/mutexlock.h", |
| 115 "src/util/options.cc", | 116 "src/util/options.cc", |
| 116 "src/util/random.h", | 117 "src/util/random.h", |
| 117 "src/util/status.cc", | 118 "src/util/status.cc", |
| 118 ] | 119 ] |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 ":leveldb_filename_test", | 392 ":leveldb_filename_test", |
| 392 ":leveldb_filter_block_test", | 393 ":leveldb_filter_block_test", |
| 393 ":leveldb_log_test", | 394 ":leveldb_log_test", |
| 394 ":leveldb_skiplist_test", | 395 ":leveldb_skiplist_test", |
| 395 ":leveldb_table_test", | 396 ":leveldb_table_test", |
| 396 ":leveldb_version_edit_test", | 397 ":leveldb_version_edit_test", |
| 397 ":leveldb_write_batch_test", | 398 ":leveldb_write_batch_test", |
| 398 ] | 399 ] |
| 399 } | 400 } |
| 400 } | 401 } |
| OLD | NEW |