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

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

Issue 1097153002: NaCl/GYP: remove references to prep_toolchain. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Edit 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 | « third_party/libjingle/libjingle_nacl.gyp ('k') | third_party/modp_b64/modp_b64_nacl.gyp » ('j') | 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 'sources': [ 58 'sources': [
59 'overrides/liblouis/config.h', 59 'overrides/liblouis/config.h',
60 'overrides/liblouis/liblouis.h', 60 'overrides/liblouis/liblouis.h',
61 'src/liblouis/compileTranslationTable.c', 61 'src/liblouis/compileTranslationTable.c',
62 'src/liblouis/logging.c', 62 'src/liblouis/logging.c',
63 'src/liblouis/lou_backTranslateString.c', 63 'src/liblouis/lou_backTranslateString.c',
64 'src/liblouis/lou_translateString.c', 64 'src/liblouis/lou_translateString.c',
65 'src/liblouis/transcommon.ci', 65 'src/liblouis/transcommon.ci',
66 'src/liblouis/wrappers.c', 66 'src/liblouis/wrappers.c',
67 ], 67 ],
68 'dependencies': [
69 '../../native_client/tools.gyp:prep_toolchain',
70 ],
71 }, 68 },
72 { 69 {
73 'target_name': 'liblouis_nacl_wrapper_nacl', 70 'target_name': 'liblouis_nacl_wrapper_nacl',
74 'type': 'none', 71 'type': 'none',
75 'variables': { 72 'variables': {
76 'nacl_untrusted_build': 1, 73 'nacl_untrusted_build': 1,
77 'nexe_target': 'liblouis_nacl', 74 'nexe_target': 'liblouis_nacl',
78 'out_newlib64': '<(braille_test_data_dir)/>(nexe_target)_x86_64.nexe ', 75 'out_newlib64': '<(braille_test_data_dir)/>(nexe_target)_x86_64.nexe ',
79 'out_newlib32': '<(braille_test_data_dir)/>(nexe_target)_x86_32.nexe ', 76 'out_newlib32': '<(braille_test_data_dir)/>(nexe_target)_x86_32.nexe ',
80 'out_newlib_arm': '<(braille_test_data_dir)/>(nexe_target)_arm.nexe' , 77 'out_newlib_arm': '<(braille_test_data_dir)/>(nexe_target)_arm.nexe' ,
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 'link_flags': [ 109 'link_flags': [
113 '-lppapi', 110 '-lppapi',
114 '-lppapi_cpp', 111 '-lppapi_cpp',
115 '-llouis_nacl', 112 '-llouis_nacl',
116 '-ljsoncpp_nacl', 113 '-ljsoncpp_nacl',
117 '-lpthread', 114 '-lpthread',
118 '-lnacl_io', 115 '-lnacl_io',
119 ], 116 ],
120 'dependencies': [ 117 'dependencies': [
121 '../../native_client/src/untrusted/nacl/nacl.gyp:nacl_lib', 118 '../../native_client/src/untrusted/nacl/nacl.gyp:nacl_lib',
122 '../../native_client/tools.gyp:prep_toolchain',
123 '../../native_client_sdk/native_client_sdk_untrusted.gyp:nacl_io_unt rusted', 119 '../../native_client_sdk/native_client_sdk_untrusted.gyp:nacl_io_unt rusted',
124 '../../ppapi/native_client/native_client.gyp:ppapi_lib', 120 '../../ppapi/native_client/native_client.gyp:ppapi_lib',
125 '../../ppapi/ppapi_nacl.gyp:ppapi_cpp_lib', 121 '../../ppapi/ppapi_nacl.gyp:ppapi_cpp_lib',
126 '../jsoncpp/jsoncpp_nacl.gyp:jsoncpp_nacl', 122 '../jsoncpp/jsoncpp_nacl.gyp:jsoncpp_nacl',
127 'liblouis_nacl', 123 'liblouis_nacl',
128 ], 124 ],
129 'actions': [ 125 'actions': [
130 { 126 {
131 'action_name': 'Generate NEWLIB NMF', 127 'action_name': 'Generate NEWLIB NMF',
132 'inputs': [ 128 'inputs': [
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 'files': [ 181 'files': [
186 '<@(table_files)', 182 '<@(table_files)',
187 ], 183 ],
188 }, 184 },
189 ], 185 ],
190 }, 186 },
191 ], 187 ],
192 }], 188 }],
193 ], 189 ],
194 } 190 }
OLDNEW
« no previous file with comments | « third_party/libjingle/libjingle_nacl.gyp ('k') | third_party/modp_b64/modp_b64_nacl.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698