| 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%': 1, | 7 'use_snappy%': 1, |
| 8 }, | 8 }, |
| 9 'conditions': [ | 9 'conditions': [ |
| 10 ['OS == "android" and android_webview_build == 1', { | 10 ['OS == "android" and android_webview_build == 1', { |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 'msvs_disabled_warnings': [ | 83 'msvs_disabled_warnings': [ |
| 84 # Signed/unsigned comparison. | 84 # Signed/unsigned comparison. |
| 85 4018, | 85 4018, |
| 86 | 86 |
| 87 # TODO(jschuh): http://crbug.com/167187 size_t -> int | 87 # TODO(jschuh): http://crbug.com/167187 size_t -> int |
| 88 4267, | 88 4267, |
| 89 ], | 89 ], |
| 90 'sources': [ | 90 'sources': [ |
| 91 # Include and then exclude so that all files show up in IDEs, even if | 91 # Include and then exclude so that all files show up in IDEs, even if |
| 92 # they don't build. | 92 # they don't build. |
| 93 'chromium_logger.h', |
| 93 'env_chromium.cc', | 94 'env_chromium.cc', |
| 94 'env_chromium.h', | 95 'env_chromium.h', |
| 95 'env_chromium_stdio.cc', | 96 'env_chromium_stdio.cc', |
| 96 'env_chromium_stdio.h', | 97 'env_chromium_stdio.h', |
| 97 'env_idb.h', | 98 'env_idb.h', |
| 98 'port/port_chromium.cc', | 99 'port/port_chromium.cc', |
| 99 'port/port_chromium.h', | 100 'port/port_chromium.h', |
| 100 'src/db/builder.cc', | 101 'src/db/builder.cc', |
| 101 'src/db/builder.h', | 102 'src/db/builder.h', |
| 102 'src/db/db_impl.cc', | 103 'src/db/db_impl.cc', |
| (...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 ], | 407 ], |
| 407 }, | 408 }, |
| 408 ], | 409 ], |
| 409 } | 410 } |
| 410 | 411 |
| 411 # Local Variables: | 412 # Local Variables: |
| 412 # tab-width:2 | 413 # tab-width:2 |
| 413 # indent-tabs-mode:nil | 414 # indent-tabs-mode:nil |
| 414 # End: | 415 # End: |
| 415 # vim: set expandtab tabstop=2 shiftwidth=2: | 416 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |