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

Side by Side Diff: chrome/common/extensions/docs/server2/extensions_paths.py

Issue 139303023: add GCS support to docs server (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated third party library, rebased and fixed a path issue caused by rebasing Created 6 years, 10 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 unified diff | Download patch
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 from posixpath import join 5 from posixpath import join
6 6
7 7
8 # Extensions-related paths within the Chromium repository. 8 # Extensions-related paths within the Chromium repository.
9 9
10 EXTENSIONS = 'chrome/common/extensions/' 10 EXTENSIONS = 'chrome/common/extensions/'
(...skipping 12 matching lines...) Expand all
23 23
24 APP_YAML = join(SERVER2, 'app.yaml') 24 APP_YAML = join(SERVER2, 'app.yaml')
25 25
26 ARTICLES_TEMPLATES = join(TEMPLATES, 'articles/') 26 ARTICLES_TEMPLATES = join(TEMPLATES, 'articles/')
27 INTROS_TEMPLATES = join(TEMPLATES, 'intros/') 27 INTROS_TEMPLATES = join(TEMPLATES, 'intros/')
28 JSON_TEMPLATES = join(TEMPLATES, 'json/') 28 JSON_TEMPLATES = join(TEMPLATES, 'json/')
29 PRIVATE_TEMPLATES = join(TEMPLATES, 'private/') 29 PRIVATE_TEMPLATES = join(TEMPLATES, 'private/')
30 PUBLIC_TEMPLATES = join(TEMPLATES, 'public/') 30 PUBLIC_TEMPLATES = join(TEMPLATES, 'public/')
31 31
32 CONTENT_PROVIDERS = join(JSON_TEMPLATES, 'content_providers.json') 32 CONTENT_PROVIDERS = join(JSON_TEMPLATES, 'content_providers.json')
33
34 LOCAL_DEBUG_DIR = join(SERVER2, 'local_debug/')
35 LOCAL_GCS_DIR = join(LOCAL_DEBUG_DIR, 'gcs/')
36 LOCAL_GCS_DEBUG_CONF = join(LOCAL_DEBUG_DIR, 'gcs_debug.conf')
OLDNEW
« no previous file with comments | « chrome/common/extensions/docs/server2/cron_servlet_test.py ('k') | chrome/common/extensions/docs/server2/gcs_file_system.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698