Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 #!/system/bin/sh | |
| 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 3 # Use of this source code is governed by a BSD-style license that can be | |
| 4 # found in the LICENSE file. | |
| 5 | |
| 6 ASAN_OPTIONS=debug=1,verbosity=1,strict_memcmp=0 \ | |
| 7 LD_LIBRARY_PATH=/data/local/tmp/asan:$LD_LIBRARY_PATH \ | |
| 8 LD_PRELOAD=libclang_rt.asan-arm-android.so \ | |
| 9 exec $@ | |
| OLD | NEW |