| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # Copyright 2011 (c) The Native Client Authors. All rights reserved. Use | 2 # Copyright 2011 (c) The Native Client Authors. All rights reserved. Use |
| 3 # of this source code is governed by a BSD-style license that can be | 3 # 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 'includes': [ | 6 'includes': [ |
| 7 '../../../build/common.gypi', | 7 '../../../build/common.gypi', |
| 8 ], | 8 ], |
| 9 'target_defaults': { | 9 'target_defaults': { |
| 10 'variables':{ | 10 'variables':{ |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 }, | 27 }, |
| 28 'conditions': [ | 28 'conditions': [ |
| 29 # NOTE: We do not support untrusted gyp build on arm yet. | 29 # NOTE: We do not support untrusted gyp build on arm yet. |
| 30 ['target_arch!="arm"', { | 30 ['target_arch!="arm"', { |
| 31 'targets': [ | 31 'targets': [ |
| 32 { | 32 { |
| 33 'target_name': 'weak_ref_lib', | 33 'target_name': 'weak_ref_lib', |
| 34 'type': 'none', | 34 'type': 'none', |
| 35 'variables': { | 35 'variables': { |
| 36 'nlib_target': 'libweak_ref.a', | 36 'nlib_target': 'libweak_ref.a', |
| 37 'nso_target': 'libweak_ref.so', |
| 37 'build_glibc': 1, | 38 'build_glibc': 1, |
| 38 'build_newlib': 1, | 39 'build_newlib': 1, |
| 39 'sources': ['weak_ref.cc'], | 40 'sources': ['weak_ref.cc'], |
| 40 }, | 41 }, |
| 41 'dependencies': [ | 42 'dependencies': [ |
| 42 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', | 43 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', |
| 43 ], | 44 ], |
| 44 }, | 45 }, |
| 45 ], | 46 ], |
| 46 }], | 47 }], |
| (...skipping 19 matching lines...) Expand all Loading... |
| 66 'type': 'static_library', # 'dynamic_library', ?!? | 67 'type': 'static_library', # 'dynamic_library', ?!? |
| 67 'variables': { | 68 'variables': { |
| 68 'target_base': 'weak_ref', | 69 'target_base': 'weak_ref', |
| 69 }, | 70 }, |
| 70 'dependencies': [ | 71 'dependencies': [ |
| 71 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform', | 72 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform', |
| 72 ], | 73 ], |
| 73 }, | 74 }, |
| 74 ], | 75 ], |
| 75 } | 76 } |
| OLD | NEW |