OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # | 2 # |
3 # Copyright 2013 The Chromium Authors. All rights reserved. | 3 # Copyright 2013 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 """Pushes native libraries to a device. | 7 """Pushes native libraries to a device. |
8 | 8 |
9 """ | 9 """ |
10 | 10 |
(...skipping 22 matching lines...) Expand all Loading... |
33 # A list so that it is modifiable in Push below. | 33 # A list so that it is modifiable in Push below. |
34 needs_directory = [True] | 34 needs_directory = [True] |
35 for lib in libraries: | 35 for lib in libraries: |
36 device_path = os.path.join(options.device_dir, lib) | 36 device_path = os.path.join(options.device_dir, lib) |
37 host_path = os.path.join(options.libraries_dir, lib) | 37 host_path = os.path.join(options.libraries_dir, lib) |
38 | 38 |
39 def Push(): | 39 def Push(): |
40 if needs_directory: | 40 if needs_directory: |
41 device.RunShellCommand('mkdir -p ' + options.device_dir) | 41 device.RunShellCommand('mkdir -p ' + options.device_dir) |
42 needs_directory[:] = [] # = False | 42 needs_directory[:] = [] # = False |
43 device.PushChangedFiles([(host_path, device_path)]) | 43 device.PushChangedFiles(host_path, device_path) |
44 | 44 |
45 record_path = '%s.%s.push.md5.stamp' % (host_path, serial_number) | 45 record_path = '%s.%s.push.md5.stamp' % (host_path, serial_number) |
46 md5_check.CallAndRecordIfStale( | 46 md5_check.CallAndRecordIfStale( |
47 Push, | 47 Push, |
48 record_path=record_path, | 48 record_path=record_path, |
49 input_paths=[host_path], | 49 input_paths=[host_path], |
50 input_strings=[device_path]) | 50 input_strings=[device_path]) |
51 | 51 |
52 | 52 |
53 def main(args): | 53 def main(args): |
(...skipping 17 matching lines...) Expand all Loading... |
71 constants.SetBuildType(options.configuration_name) | 71 constants.SetBuildType(options.configuration_name) |
72 | 72 |
73 DoPush(options) | 73 DoPush(options) |
74 | 74 |
75 if options.stamp: | 75 if options.stamp: |
76 build_utils.Touch(options.stamp) | 76 build_utils.Touch(options.stamp) |
77 | 77 |
78 | 78 |
79 if __name__ == '__main__': | 79 if __name__ == '__main__': |
80 sys.exit(main(sys.argv[1:])) | 80 sys.exit(main(sys.argv[1:])) |
OLD | NEW |