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

Unified Diff: appengine/findit/appengine_config.py

Issue 1866053002: [Findit] Move third-party libs to a sub directory and use appengine_config.py to add them at runtim… (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 4 years, 8 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 | « no previous file | appengine/findit/cloudstorage » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/appengine_config.py
diff --git a/appengine/findit/appengine_config.py b/appengine/findit/appengine_config.py
new file mode 100644
index 0000000000000000000000000000000000000000..dcd090960e6962b5ce2cfd7704a6a83d176562a9
--- /dev/null
+++ b/appengine/findit/appengine_config.py
@@ -0,0 +1,11 @@
+# Copyright 2016 The Chromium 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 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'))
« no previous file with comments | « no previous file | appengine/findit/cloudstorage » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698