What's new? | Help | Directory | Sign in
Google
             
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import os

class Config:
""" Contains constants with values that can change frequently.

Lists some of the files that can't be served from the root directory and
provide path to the files relative to server root directory. Usually
thirdparty libraries fall into this category, and we decided to take this
approach instead of copying files and keeping them in sync manually.
"""
SPECIAL_URL_TO_FILE_MAPPINGS = {
"gears_init.js": "../sdk/gears_init.js",
"json_noeval.js": "../../third_party/jsonjs/json_noeval.js"
}

# List of paths to libraries that are bundled with runner and
# need to be available in the path before the bootstrap is invoked.
ADDITIONAL_PYTHON_LIBRARY_PATHS = [
os.path.join(os.path.dirname(__file__), '../../../third_party'),
os.path.join(os.path.dirname(__file__), '../../../third_party/pexpect')
]
Show details Hide details

Change log

r2315 by gears.daemon on Jul 10, 2008   Diff
[Author: ace]

- Finishing safari launcher/installer and
adding safari runner to osx.
- A few stability fixes/improvements.
- Adding pexpect python lib to third_party
for osx use

R=playmobil
CC=gears-internal
APPROVED=playmobil
DELTA=3447  (3393 added, 34 deleted, 20
...
Go to: 
Project members, sign in to write a code review

Older revisions

r1369 by gears.daemon on Apr 14, 2008   Diff
[Author: cprince]

Fix a few remaining third_party paths.

PRESUBMIT=passed
...
r648 by gears.daemon on Jan 04, 2008   Diff
[Author: aa]

g4 rename test2 test

Fixed all references to "test2". Allen
...
All revisions of this file

File info

Size: 867 bytes, 21 lines

File properties

svn:executable
*