| OLD | NEW |
| (Empty) | |
| 1 # Copyright (c) 2012 The Native Client Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'includes': [ |
| 7 '../../../build/common.gypi', |
| 8 ], |
| 9 'conditions': [ |
| 10 ['target_arch!="arm"', { |
| 11 'targets' : [ |
| 12 { |
| 13 'target_name': 'valgrind_lib', |
| 14 'type': 'none', |
| 15 'dependencies': [ |
| 16 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', |
| 17 ], |
| 18 'variables': { |
| 19 'nlib_target': 'libvalgrind.a', |
| 20 'nso_target': 'libvalgrind.so', |
| 21 'build_glibc': 1, |
| 22 'build_newlib': 1, |
| 23 }, |
| 24 'sources': [ |
| 25 'valgrind_interceptors.c', |
| 26 ], |
| 27 }, |
| 28 { |
| 29 'target_name': 'dynamic_annotations_lib', |
| 30 'type': 'none', |
| 31 'dependencies': [ |
| 32 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', |
| 33 ], |
| 34 'variables': { |
| 35 'nlib_target': 'libdynamic_annotations.a', |
| 36 'nso_target': 'libdynamic_annotations.so', |
| 37 'build_glibc': 1, |
| 38 'build_newlib': 0, |
| 39 }, |
| 40 'sources': [ |
| 41 'dynamic_annotations.c', |
| 42 ], |
| 43 } |
| 44 ], |
| 45 }], |
| 46 ], |
| 47 } |
| OLD | NEW |