Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1317)

Side by Side Diff: third_party/liblouis/liblouis_nacl.gyp

Issue 1066823003: [NaCl SDK] Remove create_nmf dependency on NACL_SDK_ROOT env var (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ppapi/ppapi_nacl_test_common.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « ppapi/ppapi_nacl_test_common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698