OLD | NEW |
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 Loading... |
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 Loading... |
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: |
OLD | NEW |