diff options
author | jamescook@chromium.org <jamescook@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-13 21:27:03 +0000 |
---|---|---|
committer | jamescook@chromium.org <jamescook@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-13 21:27:03 +0000 |
commit | c11172a63e28cd015bb29fb5dcd6c5291d40f1cf (patch) | |
tree | 96dae502ac01f7adfa260a0e6e3f771c2006e262 /build/cp.py | |
parent | bc6d4db439f0eb5bf3a7f3147639349171db1107 (diff) | |
download | chromium_src-c11172a63e28cd015bb29fb5dcd6c5291d40f1cf.zip chromium_src-c11172a63e28cd015bb29fb5dcd6c5291d40f1cf.tar.gz chromium_src-c11172a63e28cd015bb29fb5dcd6c5291d40f1cf.tar.bz2 |
Rename aura_shell_unittests to ash_unittests, part 1
* Rename aura_shell_unittests target to ash_unittests
* Add a target for aura_shell_unittests that makes a copy of ash_unittests
We need the old copy until we can switch the build bots to using the new copy.
cp.py needs to change slightly to preserve the executable bit of the test binary.
BUG=110107
TEST=Run build/gyp_chromium, inspected build.ninja files to verify rules existed for both ash_unittests and aura_shell_unittests, built and ran both targets
TBR=thestig@chromium.org for trivial rename in tools/valgrind/chrome_test.py
Review URL: https://chromiumcodereview.appspot.com/10700163
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@146654 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/cp.py')
-rwxr-xr-x | build/cp.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build/cp.py b/build/cp.py index d0c46f41..dd98e1d 100755 --- a/build/cp.py +++ b/build/cp.py @@ -14,7 +14,8 @@ import sys def Main(src, dst): - return shutil.copyfile(src, dst) + # Use copy instead of copyfile to ensure the executable bit is copied. + return shutil.copy(src, dst) if __name__ == '__main__': |