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/braill e', | 8 'braille_chromevox_dir': '<(PRODUCT_DIR)/resources/chromeos/chromevox/braill e', |
9 'table_files': [ | 9 'table_files': [ |
10 '>!@pymod_do_main(liblouis_list_tables -D . -D src/tables -e cvox-common.c ti tables.json)', | 10 '>!@pymod_do_main(liblouis_list_tables -D . -D src/tables -e cvox-common.c ti tables.json)', |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
131 'action_name': 'Generate NEWLIB NMF', | 131 'action_name': 'Generate NEWLIB NMF', |
132 'inputs': [ | 132 'inputs': [ |
133 '>@(nexe_files)', | 133 '>@(nexe_files)', |
134 ], | 134 ], |
135 'outputs': ['>(nmf)'], | 135 'outputs': ['>(nmf)'], |
136 'action': [ | 136 'action': [ |
137 'python', | 137 'python', |
138 '<(DEPTH)/native_client_sdk/src/tools/create_nmf.py', | 138 '<(DEPTH)/native_client_sdk/src/tools/create_nmf.py', |
139 '>@(_inputs)', | 139 '>@(_inputs)', |
140 '--output=>(nmf)', | 140 '--output=>(nmf)', |
141 '--no-default-libpath', | |
binji
2015/04/07 19:44:02
it seems that this change is the only difference b
Sam Clegg
2015/04/07 20:11:53
No, I guess the bots don't test this otherwise the
| |
142 '--objdump=>(nacl_glibc_tc_root)/bin/x86_64-nacl-objdump', | |
binji
2015/04/07 21:17:39
does this need to be nacl_newlib_tc_root? Shouldn'
Sam Clegg
2015/04/09 00:26:01
It won't actually use the objdump executable unles
| |
141 ], | 143 ], |
142 }, | 144 }, |
143 ], | 145 ], |
144 # Copy specific files into the product directory to avoid | 146 # Copy specific files into the product directory to avoid |
145 # copying over the unstripped binary file. | 147 # copying over the unstripped binary file. |
146 'copies': [ | 148 'copies': [ |
147 { | 149 { |
148 'destination': '<(braille_chromevox_dir)', | 150 'destination': '<(braille_chromevox_dir)', |
149 'files': [ | 151 'files': [ |
150 '<(nmf)', | 152 '<(nmf)', |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
183 'files': [ | 185 'files': [ |
184 '<@(table_files)', | 186 '<@(table_files)', |
185 ], | 187 ], |
186 }, | 188 }, |
187 ], | 189 ], |
188 }, | 190 }, |
189 ], | 191 ], |
190 }], | 192 }], |
191 ], | 193 ], |
192 } | 194 } |
OLD | NEW |