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

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

Issue 2899403004: Add missing dependencies on exe_and_shlib_deps (Chromium repo) (Closed)
Patch Set: Rebase Created 3 years, 6 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 | « remoting/test/BUILD.gn ('k') | 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 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 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 } 302 }
303 303
304 executable("leveldb_leveldbutil") { 304 executable("leveldb_leveldbutil") {
305 sources = [ 305 sources = [
306 "src/db/leveldbutil.cc", 306 "src/db/leveldbutil.cc",
307 ] 307 ]
308 configs -= [ "//build/config/compiler:chromium_code" ] 308 configs -= [ "//build/config/compiler:chromium_code" ]
309 configs += [ "//build/config/compiler:no_chromium_code" ] 309 configs += [ "//build/config/compiler:no_chromium_code" ]
310 deps = [ 310 deps = [
311 ":leveldatabase", 311 ":leveldatabase",
312 "//build/config:exe_and_shlib_deps",
312 ] 313 ]
313 } 314 }
314 315
315 test("leveldb_log_test") { 316 test("leveldb_log_test") {
316 sources = [ 317 sources = [
317 "src/db/log_test.cc", 318 "src/db/log_test.cc",
318 ] 319 ]
319 configs -= [ "//build/config/compiler:chromium_code" ] 320 configs -= [ "//build/config/compiler:chromium_code" ]
320 configs += [ "//build/config/compiler:no_chromium_code" ] 321 configs += [ "//build/config/compiler:no_chromium_code" ]
321 deps = [ 322 deps = [
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 ":leveldb_filename_test", 391 ":leveldb_filename_test",
391 ":leveldb_filter_block_test", 392 ":leveldb_filter_block_test",
392 ":leveldb_log_test", 393 ":leveldb_log_test",
393 ":leveldb_skiplist_test", 394 ":leveldb_skiplist_test",
394 ":leveldb_table_test", 395 ":leveldb_table_test",
395 ":leveldb_version_edit_test", 396 ":leveldb_version_edit_test",
396 ":leveldb_write_batch_test", 397 ":leveldb_write_batch_test",
397 ] 398 ]
398 } 399 }
399 } 400 }
OLDNEW
« no previous file with comments | « remoting/test/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698