OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import subprocess | 5 import subprocess |
6 | 6 |
| 7 import add_sdk_tools_to_path |
7 import mopy.paths | 8 import mopy.paths |
8 | 9 |
9 class Version(object): | 10 class Version(object): |
10 """Computes the version (git committish) of the mojo repo""" | 11 """Computes the version (git committish) of the mojo repo""" |
11 | 12 |
12 def __init__(self): | 13 def __init__(self): |
13 self.version = subprocess.check_output(["git", "rev-parse", "HEAD"], | 14 self.version = subprocess.check_output(["git", "rev-parse", "HEAD"], |
14 cwd=mopy.paths.Paths().src_root).strip() | 15 cwd=mopy.paths.Paths().src_root).strip() |
OLD | NEW |