OLD | NEW |
(Empty) | |
| 1 #!/bin/bash |
| 2 # |
| 3 # Copyright (c) 2009 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 automated UI tests. |
| 8 |
| 9 ln -f -s /opt/google/chrome/chrome $(dirname $0)/chrome |
| 10 ln -f -s /opt/google/chrome/chrome.pak $(dirname $0)/chrome.pak |
| 11 ln -f -s /opt/google/chrome/locales $(dirname $0)/locales |
| 12 ln -f -s /opt/google/chrome/resources $(dirname $0)/resources |
| 13 |
| 14 mkdir -p $(dirname $0)/chromeos |
| 15 ln -f -s /opt/google/chrome/chromeos/libcros.so \ |
| 16 $(dirname $0)/chromeos/libcros.so |
OLD | NEW |