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

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

Issue 10414027: fix location of warning disable for leveldb (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
61 'msvs_disabled_warnings': [
62 # Signed/unsigned comparison.
63 4018,
64 ],
65 }], 58 }],
66 ], 59 ],
67 }, 60 },
61 # Patch posted for upstream, can be removed once that's landed and
62 # rolled into Chromium.
63 # Internal link: https://mondrian.corp.google.com/#review/29997992
64 'msvs_disabled_warnings': [
65 # Signed/unsigned comparison.
66 4018,
67 ],
68 'sources': [ 68 'sources': [
69 # 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
70 # they don't build. 70 # they don't build.
71 'env_chromium.cc', 71 'env_chromium.cc',
72 'port/port_chromium.cc', 72 'port/port_chromium.cc',
73 'port/port_chromium.h', 73 'port/port_chromium.h',
74 'src/db/builder.cc', 74 'src/db/builder.cc',
75 'src/db/builder.h', 75 'src/db/builder.h',
76 'src/db/db_impl.cc', 76 'src/db/db_impl.cc',
77 'src/db/db_impl.h', 77 'src/db/db_impl.h',
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 ], 324 ],
325 }, 325 },
326 ], 326 ],
327 } 327 }
328 328
329 # Local Variables: 329 # Local Variables:
330 # tab-width:2 330 # tab-width:2
331 # indent-tabs-mode:nil 331 # indent-tabs-mode:nil
332 # End: 332 # End:
333 # 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