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

Unified Diff: chrome/common/extensions/docs/build/build.py

Issue 8869003: Move the "extension" namespace from extension_api.json into extension_api_extension.json. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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
Index: chrome/common/extensions/docs/build/build.py
diff --git a/chrome/common/extensions/docs/build/build.py b/chrome/common/extensions/docs/build/build.py
index 4000e70ec307cabfc12f02f00beff8cf0c136080..a99cade51a480bb5de1fc54d0be8408631feeaa1 100755
--- a/chrome/common/extensions/docs/build/build.py
+++ b/chrome/common/extensions/docs/build/build.py
@@ -25,6 +25,8 @@ _samples_dir = _base_dir + "/examples"
_extension_api_dir = os.path.normpath(_base_dir + "/../api")
_extension_api_json = _extension_api_dir + "/extension_api.json"
+_extension_api_extension_json =
Aaron Boodman 2011/12/07 23:30:35 If this is only used in the one place below, maybe
koz (OOO until 15th September) 2011/12/09 19:24:18 As per kalman's comment, I've rolled all of these
+ _extension_api_dir + "/extension_api_extension.json"
not at google - send to devlin 2011/12/08 00:32:49 would be nice to do an ls *.json on here so that w
koz (OOO until 15th September) 2011/12/09 19:24:18 Done.
_devtools_api_json = _extension_api_dir + "/devtools_api.json"
_api_template_html = _template_dir + "/api_template.html"
_page_shell_html = _template_dir + "/page_shell.html"
@@ -185,7 +187,9 @@ def main():
dump_render_tree = FindDumpRenderTree()
# Load the manifest of existing API Methods
- api_manifest = ApiManifest([_extension_api_json, _devtools_api_json])
+ api_manifest = ApiManifest([_extension_api_json,
+ _extension_api_extension_json,
+ _devtools_api_json])
Aaron Boodman 2011/12/07 23:30:35 That was lucky.
koz (OOO until 15th September) 2011/12/09 19:24:18 Yes :-)
# Read static file names
static_names = GetStaticFileNames()

Powered by Google App Engine
This is Rietveld 408576698