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 3# found in the LICENSE file. 4 5from posixpath import join 6 7 8# Extensions-related paths within the Chromium repository. 9 10EXTENSIONS = 'chrome/common/extensions' 11 12API = join(EXTENSIONS, 'api') 13DOCS = join(EXTENSIONS, 'docs') 14 15API_FEATURES = join(API, '_api_features.json') 16MANIFEST_FEATURES = join(API, '_manifest_features.json') 17PERMISSION_FEATURES = join(API, '_permission_features.json') 18 19EXAMPLES = join(DOCS, 'examples') 20SERVER2 = join(DOCS, 'server2') 21STATIC_DOCS = join(DOCS, 'static') 22TEMPLATES = join(DOCS, 'templates') 23 24APP_YAML = join(SERVER2, 'app.yaml') 25 26ARTICLES_TEMPLATES = join(TEMPLATES, 'articles') 27INTROS_TEMPLATES = join(TEMPLATES, 'intros') 28JSON_TEMPLATES = join(TEMPLATES, 'json') 29PRIVATE_TEMPLATES = join(TEMPLATES, 'private') 30PUBLIC_TEMPLATES = join(TEMPLATES, 'public') 31 32CONTENT_PROVIDERS = join(JSON_TEMPLATES, 'content_providers.json') 33