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

Side by Side Diff: build/toolchain/android/default_goma_for_android.py

Issue 117863003: Work on GN toolchain definitions and build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 12 months 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
(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 just returns the environment variable GOMA_DIR if there is one,
6 # which is the default goma location on Android. Returns the empty string if
7 # it's not defined.
8 #
9 # TODO(brettw) this should be rationalized with the way that other systems get
10 # their goma setup.
11
12 import os
13
14 if 'GOMA_DIR' in os.environ:
15 print '"' + os.environ['GOMA_DIR'] + '"'
16 else:
17 print '""'
Nico 2013/12/26 22:14:34 Why the ""? Is this supposed to be shell-escaped a
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698