| 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 automated UI tests. | 7 # A script to setup symbolic links needed for Chrome's automated UI tests. |
| 8 # Should be run on test image after installing the 'chrome_test' and | 8 # Should be run on test image after installing the 'chrome_test' and |
| 9 # 'pyauto_dep' dependencies. | 9 # 'pyauto_dep' dependencies. |
| 10 | 10 |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 | 46 |
| 47 link_from_pyauto_dep \ | 47 link_from_pyauto_dep \ |
| 48 "$pyauto_dep_dir/test_src/chrome/browser/resources/gaia_auth" \ | 48 "$pyauto_dep_dir/test_src/chrome/browser/resources/gaia_auth" \ |
| 49 "$pyauto_dep_dir/test_src/chrome/test/pyautolib" \ | 49 "$pyauto_dep_dir/test_src/chrome/test/pyautolib" \ |
| 50 "$pyauto_dep_dir/test_src/net/tools/testserver" \ | 50 "$pyauto_dep_dir/test_src/net/tools/testserver" \ |
| 51 "$pyauto_dep_dir/test_src/out/Release/chromedriver" \ | 51 "$pyauto_dep_dir/test_src/out/Release/chromedriver" \ |
| 52 "$pyauto_dep_dir/test_src/out/Release/pyautolib.py" \ | 52 "$pyauto_dep_dir/test_src/out/Release/pyautolib.py" \ |
| 53 "$pyauto_dep_dir/test_src/out/Release/pyproto" \ | 53 "$pyauto_dep_dir/test_src/out/Release/pyproto" \ |
| 54 "$pyauto_dep_dir/test_src/out/Release/suid-python" \ | 54 "$pyauto_dep_dir/test_src/out/Release/suid-python" \ |
| 55 "$pyauto_dep_dir/test_src/out/Release/_pyautolib.so" \ | 55 "$pyauto_dep_dir/test_src/out/Release/_pyautolib.so" \ |
| 56 "$pyauto_dep_dir/test_src/out/Release/libffmpegsumo.so" \ | |
| 57 "$pyauto_dep_dir/test_src/third_party"/* | 56 "$pyauto_dep_dir/test_src/third_party"/* |
| 58 | 57 |
| 59 # Make sure the test files are owned by chronos as some browser_tests emit | 58 # Make sure the test files are owned by chronos as some browser_tests emit |
| 60 # temporary files into the directories. | 59 # temporary files into the directories. |
| 61 chown -R chronos "$chrome_test_dep_dir" | 60 chown -R chronos "$chrome_test_dep_dir" |
| 62 | 61 |
| OLD | NEW |