Chromium Code Reviews| Index: chrome/common/extensions/docs/server2/extensions_paths.py |
| diff --git a/chrome/common/extensions/docs/server2/extensions_paths.py b/chrome/common/extensions/docs/server2/extensions_paths.py |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..c1f55b7d59c060407148b04361f924ec7fa5c1df |
| --- /dev/null |
| +++ b/chrome/common/extensions/docs/server2/extensions_paths.py |
| @@ -0,0 +1,32 @@ |
| +# Copyright 2013 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. |
| + |
| +from posixpath import join as j |
|
Yoyo Zhou
2013/11/13 22:02:00
"j" - is this really necessary?
not at google - send to devlin
2013/11/13 22:05:46
Done.
|
| + |
| + |
| +# Extensions-related paths within the Chromium repository. |
| + |
| +EXTENSIONS = 'chrome/common/extensions' |
| + |
| +API = j(EXTENSIONS, 'api') |
| +DOCS = j(EXTENSIONS, 'docs') |
| + |
| +API_FEATURES = j(API, '_api_features.json') |
| +MANIFEST_FEATURES = j(API, '_manifest_features.json') |
| +PERMISSION_FEATURES = j(API, '_permission_features.json') |
| + |
| +EXAMPLES = j(DOCS, 'examples') |
| +SERVER2 = j(DOCS, 'server2') |
| +STATIC_DOCS = j(DOCS, 'static') |
| +TEMPLATES = j(DOCS, 'templates') |
| + |
| +APP_YAML = j(SERVER2, 'app.yaml') |
| + |
| +ARTICLES_TEMPLATES = j(TEMPLATES, 'articles') |
| +INTROS_TEMPLATES = j(TEMPLATES, 'intros') |
| +JSON_TEMPLATES = j(TEMPLATES, 'json') |
| +PRIVATE_TEMPLATES = j(TEMPLATES, 'private') |
| +PUBLIC_TEMPLATES = j(TEMPLATES, 'public') |
| + |
| +CONTENT_PROVIDERS = j(JSON_TEMPLATES, 'content_providers.json') |