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

Side by Side Diff: third_party/leveldatabase/leveldatabase.gyp

Issue 10384092: Disable warning in leveldb (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add comments Created 8 years, 7 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 | Annotate | Revision Log
« 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 (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%': 0, 7 'use_snappy%': 0,
8 }, 8 },
9 'target_defaults': { 9 'target_defaults': {
10 'defines': [ 10 'defines': [
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 'direct_dependent_settings': { 48 'direct_dependent_settings': {
49 'include_dirs': [ 49 'include_dirs': [
50 'src/include/', 50 'src/include/',
51 'src/', 51 'src/',
52 ], 52 ],
53 'conditions': [ 53 'conditions': [
54 ['OS == "win"', { 54 ['OS == "win"', {
55 'include_dirs': [ 55 'include_dirs': [
56 'src/port/win', 56 'src/port/win',
57 ], 57 ],
58 # Patch posted for upstream, can be removed once that's landed and
59 # rolled into Chromium.
60 # Internal link: https://mondrian.corp.google.com/#review/29997992
Nico 2012/05/17 17:24:45 nit: to not leak .corp links, the usual approach i
61 'msvs_disabled_warnings': [
62 # Signed/unsigned comparison.
63 4018,
64 ],
58 }], 65 }],
59 ], 66 ],
60 }, 67 },
61 'sources': [ 68 'sources': [
62 # Include and then exclude so that all files show up in IDEs, even if 69 # Include and then exclude so that all files show up in IDEs, even if
63 # they don't build. 70 # they don't build.
64 'env_chromium.cc', 71 'env_chromium.cc',
65 'port/port_chromium.cc', 72 'port/port_chromium.cc',
66 'port/port_chromium.h', 73 'port/port_chromium.h',
67 'src/db/builder.cc', 74 'src/db/builder.cc',
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 ], 324 ],
318 }, 325 },
319 ], 326 ],
320 } 327 }
321 328
322 # Local Variables: 329 # Local Variables:
323 # tab-width:2 330 # tab-width:2
324 # indent-tabs-mode:nil 331 # indent-tabs-mode:nil
325 # End: 332 # End:
326 # vim: set expandtab tabstop=2 shiftwidth=2: 333 # vim: set expandtab tabstop=2 shiftwidth=2:
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