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