| 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 'variables': { |
| 16 'nlib_target': 'libvalgrind.a', |
| 17 'nso_target': 'libvalgrind.so', |
| 18 'build_glibc': 1, |
| 19 'build_newlib': 1, |
| 20 }, |
| 21 'sources': [ |
| 22 'valgrind_interceptors.c', |
| 23 ], |
| 24 }, |
| 25 { |
| 26 'target_name': 'dynamic_annotations_lib', |
| 27 'type': 'none', |
| 28 'variables': { |
| 29 'nlib_target': 'libdynamic_annotations.a', |
| 30 'nso_target': 'libdynamic_annotations.so', |
| 31 'build_glibc': 1, |
| 32 'build_newlib': 0, |
| 33 }, |
| 34 'sources': [ |
| 35 'dynamic_annotations.c', |
| 36 ], |
| 37 } |
| 38 ], |
| 39 }], |
| 40 ], |
| 41 } |
| OLD | NEW |