Fix missing GN dependencies.
[chromium-blink-merge.git] / third_party / instrumented_libraries / scripts / unpack_binaries.sh
blob12af6adc578208026f640095ac895539497498c5
1 #!/bin/bash
2 # Copyright 2015 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.
6 # Unpacks an archive containing prebuilt instrumented libraries into output dir.
8 archive_file=$1
9 target_dir=$2
10 stamp_file=$3
12 rm ${target_dir}/* -rf
13 tar -zxf ${archive_file} -C ${target_dir}
15 touch ${stamp_file}