| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 The Chromium 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. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'use_system_speex%': 0, | 7 'use_system_speex%': 0, |
| 8 }, | 8 }, |
| 9 'conditions': [ | 9 'conditions': [ |
| 10 ['use_system_speex==0', { | 10 ['use_system_speex==0', { |
| 11 'targets': [ | 11 'targets': [ |
| 12 { | 12 { |
| 13 'target_name': 'libspeex', | 13 'target_name': 'libspeex', |
| 14 'product_name': 'speex', | 14 'product_name': 'speex', |
| 15 'type': '<(library)', | 15 'type': 'static_library', |
| 16 'sources': [ | 16 'sources': [ |
| 17 'libspeex/arch.h', | 17 'libspeex/arch.h', |
| 18 'libspeex/bits.c', | 18 'libspeex/bits.c', |
| 19 'libspeex/cb_search.c', | 19 'libspeex/cb_search.c', |
| 20 'libspeex/cb_search.h', | 20 'libspeex/cb_search.h', |
| 21 'libspeex/exc_10_16_table.c', | 21 'libspeex/exc_10_16_table.c', |
| 22 'libspeex/exc_10_32_table.c', | 22 'libspeex/exc_10_32_table.c', |
| 23 'libspeex/exc_20_32_table.c', | 23 'libspeex/exc_20_32_table.c', |
| 24 'libspeex/exc_5_256_table.c', | 24 'libspeex/exc_5_256_table.c', |
| 25 'libspeex/exc_5_64_table.c', | 25 'libspeex/exc_5_64_table.c', |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 ], | 132 ], |
| 133 }], | 133 }], |
| 134 ], | 134 ], |
| 135 } | 135 } |
| 136 | 136 |
| 137 # Local Variables: | 137 # Local Variables: |
| 138 # tab-width:2 | 138 # tab-width:2 |
| 139 # indent-tabs-mode:nil | 139 # indent-tabs-mode:nil |
| 140 # End: | 140 # End: |
| 141 # vim: set expandtab tabstop=2 shiftwidth=2: | 141 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |