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