1 #!/bin/bash 2 # 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 4 # Use of this source code is governed by a BSD-style license that can be 5 # found in the LICENSE file. 6 # 7 # A script to setup symbolic links needed for Chrome's PyAuto framework. 8 9 ln -f -s /opt/google/chrome/chrome $(dirname $0)/chrome 10 [ -L $(dirname $0)/locales ] || ln -f -s /opt/google/chrome/locales \ 11 $(dirname $0)/locales 12 [ -L $(dirname $0)/resources ] || ln -f -s /opt/google/chrome/resources \ 13 $(dirname $0)/resources 14 ln -f -s /opt/google/chrome/*.pak $(dirname $0)/ 15 ln -f -s /opt/google/chrome/libffmpegsumo.so $(dirname $0)/libffmpegsumo.so 16