| 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'))
|
|
|