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

Unified Diff: build/toolchain/get_default_posix_goma_dir.py

Issue 117863003: Work on GN toolchain definitions and build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 7 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/toolchain/gcc_toolchain.gni ('k') | build/toolchain/goma.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/toolchain/get_default_posix_goma_dir.py
diff --git a/build/toolchain/get_default_posix_goma_dir.py b/build/toolchain/get_default_posix_goma_dir.py
new file mode 100644
index 0000000000000000000000000000000000000000..2aa02674fef9b6f3802a50d2b1184c95701917f4
--- /dev/null
+++ b/build/toolchain/get_default_posix_goma_dir.py
@@ -0,0 +1,11 @@
+# Copyright 2013 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+# This script returns the default goma directory for Posix systems, which is
+# relative to the user's home directory. On Windows, goma.gypi hardcodes a
+# value.
+
+import os
+
+print '"' + os.environ['HOME'] + '/goma"'
« no previous file with comments | « build/toolchain/gcc_toolchain.gni ('k') | build/toolchain/goma.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698