Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(281)

Side by Side Diff: chrome/test/chromeos/autotest/files/client/deps/chrome_test/chrome_test.py

Issue 8680018: Fix python scripts in src/chrome/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 #!/usr/bin/python 1 #!/usr/bin/env python
Nirnimesh 2011/11/23 21:42:25 Please skip the files in chrome/test/chromeos/auto
2 2 # Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
3 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 4 # found in the LICENSE file.
6 5
7 import common, commands, logging, os 6 import logging
7 import os
8
9 import common
10 import commands
8 from autotest_lib.client.bin import utils 11 from autotest_lib.client.bin import utils
9 12
10 version = 1 13 version = 1
11 14
15
12 def setup(top_dir): 16 def setup(top_dir):
13 return 17 return
14 18
15 19
16 pwd = os.getcwd() 20 def main():
17 utils.update_version(pwd + '/src', False, version, setup, None) 21 pwd = os.getcwd()
22 utils.update_version(pwd + '/src', False, version, setup, None)
23
24
25 if __name__ == '__main__':
26 sys.exit(main())
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698