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

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

Issue 1297004: Add desktopui_IBusTest, that checks if IBus is working properly. (Closed)
Patch Set: be explicit about the user name 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
« no previous file with comments | « client/deps/ibusclient/control ('k') | client/deps/ibusclient/src/Makefile » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/deps/ibusclient/ibusclient.py
diff --git a/client/deps/ibusclient/ibusclient.py b/client/deps/ibusclient/ibusclient.py
new file mode 100755
index 0000000000000000000000000000000000000000..21f646c22f42ad759dc00b7cf3570907cf3b9aab
--- /dev/null
+++ b/client/deps/ibusclient/ibusclient.py
@@ -0,0 +1,19 @@
+#!/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, shutil
+from autotest_lib.client.bin import utils
+
+version = 1
+
+def setup(topdir):
+ srcdir = os.path.join(topdir, 'src')
+ os.chdir(srcdir)
+ utils.system('make')
+ os.chdir(topdir)
+
+pwd = os.getcwd()
+utils.update_version(pwd + '/src', True, version, setup, pwd)
« no previous file with comments | « client/deps/ibusclient/control ('k') | client/deps/ibusclient/src/Makefile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698