aboutsummaryrefslogtreecommitdiff
path: root/crosperf/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'crosperf/config.py')
-rw-r--r--crosperf/config.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/crosperf/config.py b/crosperf/config.py
new file mode 100644
index 00000000..76175660
--- /dev/null
+++ b/crosperf/config.py
@@ -0,0 +1,13 @@
+# Copyright 2011 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.
+"""A configure file."""
+config = {}
+
+
+def GetConfig(key):
+ return config.get(key)
+
+
+def AddConfig(key, value):
+ config[key] = value