| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 ['use_snappy', { | 42 ['use_snappy', { |
| 43 'dependencies': [ | 43 'dependencies': [ |
| 44 '../../third_party/snappy/snappy.gyp:snappy', | 44 '../../third_party/snappy/snappy.gyp:snappy', |
| 45 ], | 45 ], |
| 46 }], | 46 }], |
| 47 ], | 47 ], |
| 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 ], |
| 53 'conditions': [ | 54 'conditions': [ |
| 54 ['OS == "win"', { | 55 ['OS == "win"', { |
| 55 'include_dirs': [ | 56 'include_dirs': [ |
| 56 'src/port/win', | 57 'src/port/win', |
| 57 ], | 58 ], |
| 58 }], | 59 }], |
| 59 ], | 60 ], |
| 60 }, | 61 }, |
| 61 # Patch posted for upstream, can be removed once that's landed and | 62 # Patch posted for upstream, can be removed once that's landed and |
| 62 # rolled into Chromium. | 63 # rolled into Chromium. |
| 63 # Internal link: https://mondrian.corp.google.com/#review/29997992 | 64 # Internal link: https://mondrian.corp.google.com/#review/29997992 |
| 64 'msvs_disabled_warnings': [ | 65 'msvs_disabled_warnings': [ |
| 65 # Signed/unsigned comparison. | 66 # Signed/unsigned comparison. |
| 66 4018, | 67 4018, |
| 67 ], | 68 ], |
| 68 'sources': [ | 69 'sources': [ |
| 69 # Include and then exclude so that all files show up in IDEs, even if | 70 # Include and then exclude so that all files show up in IDEs, even if |
| 70 # they don't build. | 71 # they don't build. |
| 71 'env_chromium.cc', | 72 'env_chromium.cc', |
| 73 'env_idb.h', |
| 72 'port/port_chromium.cc', | 74 'port/port_chromium.cc', |
| 73 'port/port_chromium.h', | 75 'port/port_chromium.h', |
| 74 'src/db/builder.cc', | 76 'src/db/builder.cc', |
| 75 'src/db/builder.h', | 77 'src/db/builder.h', |
| 76 'src/db/db_impl.cc', | 78 'src/db/db_impl.cc', |
| 77 'src/db/db_impl.h', | 79 'src/db/db_impl.h', |
| 78 'src/db/db_iter.cc', | 80 'src/db/db_iter.cc', |
| 79 'src/db/db_iter.h', | 81 'src/db/db_iter.h', |
| 80 'src/db/filename.cc', | 82 'src/db/filename.cc', |
| 81 'src/db/filename.h', | 83 'src/db/filename.h', |
| (...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 ], | 351 ], |
| 350 }, | 352 }, |
| 351 ], | 353 ], |
| 352 } | 354 } |
| 353 | 355 |
| 354 # Local Variables: | 356 # Local Variables: |
| 355 # tab-width:2 | 357 # tab-width:2 |
| 356 # indent-tabs-mode:nil | 358 # indent-tabs-mode:nil |
| 357 # End: | 359 # End: |
| 358 # vim: set expandtab tabstop=2 shiftwidth=2: | 360 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |