| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'braille_test_data_dir': '<(PRODUCT_DIR)/chromevox_test_data/braille', | 7 'braille_test_data_dir': '<(PRODUCT_DIR)/chromevox_test_data/braille', |
| 8 'braille_chromevox_dir': '<(PRODUCT_DIR)/resources/chromeos/chromevox/chrome
vox/background/braille', | 8 'braille_chromevox_dir': '<(PRODUCT_DIR)/resources/chromeos/chromevox/chrome
vox/background/braille', |
| 9 'table_files': [ | 9 'table_files': [ |
| 10 '>!@pymod_do_main(liblouis_list_tables -D overrides/tables -D src/tables t
ables.json)', | 10 '>!@pymod_do_main(liblouis_list_tables -D . -D src/tables -e cvox-common.c
ti tables.json)', |
| 11 ], | 11 ], |
| 12 }, | 12 }, |
| 13 # x86 targets build both 32 and 64 bit binaries by default. We only need | 13 # x86 targets build both 32 and 64 bit binaries by default. We only need |
| 14 # the one that matches our target architecture. | 14 # the one that matches our target architecture. |
| 15 'target_defaults': { | 15 'target_defaults': { |
| 16 'conditions': [ | 16 'conditions': [ |
| 17 ['target_arch=="ia32"', { | 17 ['target_arch=="ia32"', { |
| 18 'variables': { | 18 'variables': { |
| 19 'enable_x86_64': 0, | 19 'enable_x86_64': 0, |
| 20 }, | 20 }, |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 'files': [ | 182 'files': [ |
| 183 '<@(table_files)', | 183 '<@(table_files)', |
| 184 ], | 184 ], |
| 185 }, | 185 }, |
| 186 ], | 186 ], |
| 187 }, | 187 }, |
| 188 ], | 188 ], |
| 189 }], | 189 }], |
| 190 ], | 190 ], |
| 191 } | 191 } |
| OLD | NEW |