Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 ###################### Set up enviroment variables. ##################### | |
| 2 ##!/bin/bash | |
| 3 # | |
| 4 ## Notice: | |
| 5 ## User should copy the this part to setup_enviroments.sh script and customized | |
| 6 ## the path values. | |
| 7 ## Source this script to setup the PYTHONPATH and other environment settings for | |
| 8 ## pulling data from datastore App Engine Remote API. Command: | |
|
stgao
2016/10/13 06:38:51
What's the entry point of the delta test? A python
Sharu Jiang
2016/10/13 20:31:16
The entry point is a python script.
Some user se
stgao
2016/10/14 00:55:01
Why this can't be taken care by the python script
stgao
2016/10/19 00:49:47
And ping again
Sharu Jiang
2016/10/19 20:12:44
This can be taken care by the python script itself
stgao
2016/10/20 01:18:37
In that case, can we extract and share just like a
Sharu Jiang
2016/10/20 20:38:20
Yes, those findit_dir, third_party_dir, appengine_
stgao
2016/10/21 01:36:34
We could check environment setting as in my last c
Sharu Jiang
2016/10/21 18:29:40
Done.
| |
| 9 ## source setup_enviroments.sh | |
| 10 # | |
| 11 ## This must be set to the directory in which Findit source code is | |
| 12 ## checked out, eg: ~/chrome-internal if the checkout is in | |
| 13 ## ~/chrome-internal/findit. | |
| 14 #export FINDIT_ROOT_DIR='root/path/to/findit' | |
| 15 # | |
| 16 ## Since findit doesn't want to cover the tests of | |
| 17 #export UTIL_SCRIPTS_DIR=$FINDIT_ROOT_DIR/util_scripts | |
| 18 # | |
| 19 ##This must be set to the third_party directory under findit. | |
| 20 #export THIRD_PARTY_DIR=${FINDIT_ROOT_DIR}/third_party | |
| 21 # | |
| 22 ## This must be set to your appengine SDK directory. | |
| 23 #APPENGINE_SDK_DIR='path/to/google_appengine' | |
| 24 # | |
| 25 #if [[ $PYTHONPATH != *$APPENGINE_SDK_DIR* ]] | |
| 26 #then | |
| 27 # export PYTHONPATH=$UTIL_SCRIPTS_DIR:$FINDIT_ROOT_DIR:$THIRD_PARTY_DIR:$APPENG INE_SDK_DIR | |
| 28 #fi | |
| 29 # | |
| 30 ## This should be set to your app id. | |
| 31 #export APP_ID="your app id" | |
| 32 # | |
| 33 ## This must be set to the directory to put local checkout in. | |
| 34 #export CHECKOUT_ROOT_DIR='path/to/checkout/root/path' | |
| OLD | NEW |