| OLD | NEW |
| 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 Loading... |
| 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 ) |
| OLD | NEW |