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

Side by Side Diff: src/trusted/sel_universal/build.scons

Issue 758223003: Cleanup: Use Bit('build_ARCH') instead of Bit('target_ARCH') (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Fix + simplify Created 6 years 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 | Annotate | Revision Log
« no previous file with comments | « src/trusted/platform_qualify/build.scons ('k') | src/trusted/service_runtime/build.scons » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # -*- python -*- 1 # -*- python -*-
2 # Copyright (c) 2011 The Native Client Authors. All rights reserved. 2 # Copyright (c) 2011 The Native Client Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 6
7 Import('env') 7 Import('env')
8 8
9 9
10 # NOTE: Probably because of GetPluginDir() 10 # NOTE: Probably because of GetPluginDir()
11 if env.Bit('linux') and env.Bit('target_x86'): 11 if env.Bit('linux') and env.Bit('build_x86'):
12 env.Append(LIBS=['dl']) 12 env.Append(LIBS=['dl'])
13 13
14 14
15 # NOTE: we need Cocoa because of the GetPluginDir() implementation 15 # NOTE: we need Cocoa because of the GetPluginDir() implementation
16 # on mac (nonnacl_util_c) 16 # on mac (nonnacl_util_c)
17 env.ComponentProgram('sel_universal', 17 env.ComponentProgram('sel_universal',
18 ['parsing.cc', 18 ['parsing.cc',
19 'pnacl_emu_coordinator.cc', 19 'pnacl_emu_coordinator.cc',
20 'pnacl_emu_handler.cc', 20 'pnacl_emu_handler.cc',
21 'pnacl_emu_stream.cc', 21 'pnacl_emu_stream.cc',
(...skipping 11 matching lines...) Expand all
33 'nrd_xfer', 33 'nrd_xfer',
34 'nacl_base', 34 'nacl_base',
35 'platform', 35 'platform',
36 'gio', 36 'gio',
37 'imc', 37 'imc',
38 'env_cleanser', 38 'env_cleanser',
39 'nacl_error_code', 39 'nacl_error_code',
40 ], 40 ],
41 FRAMEWORKS=['Cocoa'], 41 FRAMEWORKS=['Cocoa'],
42 ) 42 )
OLDNEW
« no previous file with comments | « src/trusted/platform_qualify/build.scons ('k') | src/trusted/service_runtime/build.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698