| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. | 2 # Copyright (c) 2012 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 ###################################################################### | 7 ###################################################################### |
| 8 'variables': { | 8 'variables': { |
| 9 'COMMAND_TESTER': '<(DEPTH)/native_client/tools/command_tester.py', | 9 'COMMAND_TESTER': '<(DEPTH)/native_client/tools/command_tester.py', |
| 10 'common_sources': [ | 10 'common_sources': [ |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 ], | 72 ], |
| 73 'conditions': [ | 73 'conditions': [ |
| 74 ['target_arch!="arm"', { | 74 ['target_arch!="arm"', { |
| 75 'targets': [ | 75 'targets': [ |
| 76 # NOTE: we do not support untrusted gyp build on arm yet. | 76 # NOTE: we do not support untrusted gyp build on arm yet. |
| 77 { | 77 { |
| 78 'target_name': 'imc_lib', | 78 'target_name': 'imc_lib', |
| 79 'type': 'none', | 79 'type': 'none', |
| 80 'variables': { | 80 'variables': { |
| 81 'nlib_target': 'libimc.a', | 81 'nlib_target': 'libimc.a', |
| 82 'nso_target': 'libimc.so', |
| 82 'build_glibc': 1, | 83 'build_glibc': 1, |
| 83 'build_newlib': 0, | 84 'build_newlib': 1, |
| 84 'sources': ['nacl_imc_c.cc', 'nacl_imc_common.cc', 'nacl/nacl_imc.cc
'], | 85 'sources': ['nacl_imc_c.cc', 'nacl_imc_common.cc', 'nacl/nacl_imc.cc
'], |
| 85 }, | 86 }, |
| 86 'dependencies': [ | 87 'dependencies': [ |
| 87 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', | 88 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', |
| 88 ], | 89 ], |
| 89 }, | 90 }, |
| 90 ], | 91 ], |
| 91 }], | 92 }], |
| 92 ['OS=="win"', { | 93 ['OS=="win"', { |
| 93 'targets': [ | 94 'targets': [ |
| (...skipping 24 matching lines...) Expand all Loading... |
| 118 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio64', | 119 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio64', |
| 119 ], | 120 ], |
| 120 }, | 121 }, |
| 121 ], | 122 ], |
| 122 }], | 123 }], |
| 123 ], | 124 ], |
| 124 } | 125 } |
| 125 | 126 |
| 126 # TODO: some tests missing, c.f. build.scons | 127 # TODO: some tests missing, c.f. build.scons |
| 127 | 128 |
| OLD | NEW |