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

Unified Diff: client/deps/realtimecomm_playground/realtimecomm_playground.py

Issue 1224003: Add dep for playground (Closed)
Patch Set: Improvement from codereview Created 10 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: client/deps/realtimecomm_playground/realtimecomm_playground.py
diff --git a/client/deps/realtimecomm_playground/realtimecomm_playground.py b/client/deps/realtimecomm_playground/realtimecomm_playground.py
new file mode 100755
index 0000000000000000000000000000000000000000..18508a4ea91ed2a5cc13b9ae6a1aae1046da13d2
--- /dev/null
+++ b/client/deps/realtimecomm_playground/realtimecomm_playground.py
@@ -0,0 +1,18 @@
+#!/usr/bin/python
+
+# Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import common, os
+from autotest_lib.client.bin import utils
+
+version = 1
+
+def setup(tarball, topdir):
+ srcdir = os.path.join(topdir, 'src')
+ utils.extract_tarball_to_dir(tarball, srcdir)
+
+pwd = os.getcwd()
+tarball = os.path.join(pwd, 'GTalkPlayground.tar.gz')
+utils.update_version(pwd+'/src', False, version, setup, tarball, pwd)

Powered by Google App Engine
This is Rietveld 408576698