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

Side by Side Diff: build/secondary/third_party/leveldatabase/BUILD.gn

Issue 1044613002: Add missing dumpfile.cc to leveldatabase target in GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 # Snappy is a compression library we use. 5 # Snappy is a compression library we use.
6 # TODO(brettw) It's not clear why this needs to be parameterized. 6 # TODO(brettw) It's not clear why this needs to be parameterized.
7 7
8 import("//testing/test.gni") 8 import("//testing/test.gni")
9 9
10 use_snappy = true 10 use_snappy = true
(...skipping 16 matching lines...) Expand all
27 "port/port_chromium.cc", 27 "port/port_chromium.cc",
28 "port/port_chromium.h", 28 "port/port_chromium.h",
29 "src/db/builder.cc", 29 "src/db/builder.cc",
30 "src/db/builder.h", 30 "src/db/builder.h",
31 "src/db/db_impl.cc", 31 "src/db/db_impl.cc",
32 "src/db/db_impl.h", 32 "src/db/db_impl.h",
33 "src/db/db_iter.cc", 33 "src/db/db_iter.cc",
34 "src/db/db_iter.h", 34 "src/db/db_iter.h",
35 "src/db/dbformat.cc", 35 "src/db/dbformat.cc",
36 "src/db/dbformat.h", 36 "src/db/dbformat.h",
37 "src/db/dumpfile.cc",
cmumford 2015/03/30 16:47:25 Do we need src/include/leveldb/dumpfile.h too?
tfarina 2015/03/30 19:16:24 We don't, but yeah, included.
37 "src/db/filename.cc", 38 "src/db/filename.cc",
38 "src/db/filename.h", 39 "src/db/filename.h",
39 "src/db/log_format.h", 40 "src/db/log_format.h",
40 "src/db/log_reader.cc", 41 "src/db/log_reader.cc",
41 "src/db/log_reader.h", 42 "src/db/log_reader.h",
42 "src/db/log_writer.cc", 43 "src/db/log_writer.cc",
43 "src/db/log_writer.h", 44 "src/db/log_writer.h",
44 "src/db/memtable.cc", 45 "src/db/memtable.cc",
45 "src/db/memtable.h", 46 "src/db/memtable.h",
46 "src/db/repair.cc", 47 "src/db/repair.cc",
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 sources = [ 330 sources = [
330 "src/db/write_batch_test.cc", 331 "src/db/write_batch_test.cc",
331 ] 332 ]
332 configs -= [ "//build/config/compiler:chromium_code" ] 333 configs -= [ "//build/config/compiler:chromium_code" ]
333 configs += [ "//build/config/compiler:no_chromium_code" ] 334 configs += [ "//build/config/compiler:no_chromium_code" ]
334 deps = [ 335 deps = [
335 ":leveldb_testutil", 336 ":leveldb_testutil",
336 ] 337 ]
337 } 338 }
338 } 339 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698