OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 | |
5 # This script returns the default goma directory for Posix systems, which is | |
6 # relative to the user's home directory. On Windows, goma.gypi hardcodes a | |
7 # value. | |
8 | |
9 import os | |
10 | |
11 print '"' + os.environ['HOME'] + '/goma"' | |
OLD | NEW |