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

Unified Diff: appengine/predator/app/appengine_config.py

Issue 2447253002: [Findit & Predator] Code reorg of Findit. (Closed)
Patch Set: Clean up. Created 4 years, 1 month 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: appengine/predator/app/appengine_config.py
diff --git a/appengine/findit/appengine_config.py b/appengine/predator/app/appengine_config.py
similarity index 50%
copy from appengine/findit/appengine_config.py
copy to appengine/predator/app/appengine_config.py
index dcd090960e6962b5ce2cfd7704a6a83d176562a9..0e11d2cae2332c94aeed538e900acfb8966f6868 100644
--- a/appengine/findit/appengine_config.py
+++ b/appengine/predator/app/appengine_config.py
@@ -6,6 +6,8 @@ import os
from google.appengine.ext import vendor
-# Add all the third-party libraries.
-vendor.add(
- os.path.join(os.path.dirname(os.path.realpath(__file__)), 'third_party'))
+_THIS_DIR = os.path.dirname(os.path.realpath(__file__))
+
+# Add all the first-party and thir-party libraries.
+vendor.add(os.path.join(_THIS_DIR, 'first_party'))
+vendor.add(os.path.join(_THIS_DIR, 'third_party'))

Powered by Google App Engine
This is Rietveld 408576698