| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'asan_dynamic_runtime', | 8 'target_name': 'asan_dynamic_runtime', |
| 9 'type': 'none', | 9 'type': 'none', |
| 10 'variables': { | 10 'variables': { |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 }, | 30 }, |
| 31 ], | 31 ], |
| 32 }], | 32 }], |
| 33 # ASan works with iOS simulator only, not bare-metal iOS. | 33 # ASan works with iOS simulator only, not bare-metal iOS. |
| 34 ['OS=="ios" and target_arch=="ia32"', { | 34 ['OS=="ios" and target_arch=="ia32"', { |
| 35 'toolsets': ['host', 'target'], | 35 'toolsets': ['host', 'target'], |
| 36 'copies': [ | 36 'copies': [ |
| 37 { | 37 { |
| 38 'destination': '<(PRODUCT_DIR)', | 38 'destination': '<(PRODUCT_DIR)', |
| 39 'target_conditions': [ | 39 'target_conditions': [ |
| 40 ['_toolset=="host"', { 'files': [ 'asan_osx_dynamic'] }], | 40 ['_toolset=="host"', { |
| 41 ['_toolset=="target"', { 'files': [ 'asan_iossim_dynamic'] }], | 41 'files': [ '<!(/bin/ls <(asan_osx_dynamic))'], |
| 42 }], |
| 43 ['_toolset=="target"', { |
| 44 'files': [ '<!(/bin/ls <(asan_iossim_dynamic))'], |
| 45 }], |
| 42 ], | 46 ], |
| 43 }, | 47 }, |
| 44 ], | 48 ], |
| 45 }], | 49 }], |
| 46 ], | 50 ], |
| 47 }, | 51 }, |
| 48 ], | 52 ], |
| 49 } | 53 } |
| OLD | NEW |