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

Side by Side Diff: src/trusted/validator/x86/decoder/ncval_x86_decoder.gyp

Issue 24227003: [MIPS] Add support to gyp files to build Native Client inside of Chromium (Closed) Base URL: http://git.chromium.org/native_client/src/native_client.git@master
Patch Set: Update per comments. Created 7 years, 2 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
OLDNEW
1 # Copyright (c) 2011 The Native Client Authors. All rights reserved. 1 # Copyright (c) 2011 The Native Client 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 # Build the specific library dependencies for decoding x86 instructions. 5 # Build the specific library dependencies for decoding x86 instructions.
6 # Used to define a "full" decoder (used by ncdis). Currently used to decode 6 # Used to define a "full" decoder (used by ncdis). Currently used to decode
7 # instructions for the x86-64 validator. Future plans is to encorporate the 7 # instructions for the x86-64 validator. Future plans is to encorporate the
8 # decoder into the x86-32 validator. 8 # decoder into the x86-32 validator.
9 { 9 {
10 'includes': [ 10 'includes': [
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 'variables': { 168 'variables': {
169 'target_base': 'nc_decoder', 169 'target_base': 'nc_decoder',
170 }, 170 },
171 'dependencies': [ 171 'dependencies': [
172 'nc_opcode_modeling_x86_64', 172 'nc_opcode_modeling_x86_64',
173 '<(DEPTH)/native_client/src/trusted/validator/x86/validate_x86.gyp:n cval_base_x86_64', 173 '<(DEPTH)/native_client/src/trusted/validator/x86/validate_x86.gyp:n cval_base_x86_64',
174 ], 174 ],
175 }], 175 }],
176 }], 176 }],
177 [ 'target_arch=="arm"', { 177 [ 'target_arch=="arm"', {
178 'targets': [] 178 'targets': []
Mark Seaborn 2013/09/23 19:15:28 Please just remove these 'targets':[] parts
petarj 2013/09/25 23:21:31 Done.
179 }], 179 }],
180 [ 'target_arch=="mipsel"', {
181 'targets': []
182 }],
180 ], 183 ],
181 } 184 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698