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 | 83 |
84 # TODO(jschuh): http://crbug.com/167187 size_t -> int | 84 # TODO(jschuh): http://crbug.com/167187 size_t -> int |
85 4267, | 85 4267, |
86 ], | 86 ], |
87 'sources': [ | 87 'sources': [ |
88 # Include and then exclude so that all files show up in IDEs, even if | 88 # Include and then exclude so that all files show up in IDEs, even if |
89 # they don't build. | 89 # they don't build. |
90 'chromium_logger.h', | 90 'chromium_logger.h', |
91 'env_chromium.cc', | 91 'env_chromium.cc', |
92 'env_chromium.h', | 92 'env_chromium.h', |
93 'env_chromium_stdio.cc', | |
94 'env_chromium_stdio.h', | |
95 'env_chromium_win.cc', | |
96 'env_chromium_win.h', | |
97 'env_idb.h', | 93 'env_idb.h', |
98 'port/port_chromium.cc', | 94 'port/port_chromium.cc', |
99 'port/port_chromium.h', | 95 'port/port_chromium.h', |
100 'src/db/builder.cc', | 96 'src/db/builder.cc', |
101 'src/db/builder.h', | 97 'src/db/builder.h', |
102 'src/db/db_impl.cc', | 98 'src/db/db_impl.cc', |
103 'src/db/db_impl.h', | 99 'src/db/db_impl.h', |
104 'src/db/db_iter.cc', | 100 'src/db/db_iter.cc', |
105 'src/db/db_iter.h', | 101 'src/db/db_iter.h', |
106 'src/db/filename.cc', | 102 'src/db/filename.cc', |
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
406 ], | 402 ], |
407 }, | 403 }, |
408 ], | 404 ], |
409 } | 405 } |
410 | 406 |
411 # Local Variables: | 407 # Local Variables: |
412 # tab-width:2 | 408 # tab-width:2 |
413 # indent-tabs-mode:nil | 409 # indent-tabs-mode:nil |
414 # End: | 410 # End: |
415 # vim: set expandtab tabstop=2 shiftwidth=2: | 411 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |