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

Unified Diff: tools/json_schema_compiler/test/forbidden.json

Issue 682493002: Remove the dependency on json schema compiler. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: tools/json_schema_compiler/test/forbidden.json
diff --git a/tools/json_schema_compiler/test/forbidden.json b/tools/json_schema_compiler/test/forbidden.json
deleted file mode 100644
index 841b0e1af531b51b5a687f66c179f8ec0b7ed206..0000000000000000000000000000000000000000
--- a/tools/json_schema_compiler/test/forbidden.json
+++ /dev/null
@@ -1,40 +0,0 @@
-[
- {
- "namespace": "forbidden",
- "description": "The forbidden API... Careful.",
- "types": [],
- "functions": [
- {
- "name": "forbiddenParameters",
- "type": "function",
- "description": "Don't do this at home. Accepts multiple choices and values",
- "parameters": [
- {
- "name": "firstChoice",
- "description": "a choice between int and array",
- "choices": [
- {"type": "integer", "minimum": 0},
- {"type": "array", "items": {"type": "integer"}}
- ]
- },
- {
- "type": "string",
- "name": "firstString"
- },
- {
- "name": "secondChoice",
- "description": "a choice between int and array",
- "choices": [
- {"type": "integer", "minimum": 0},
- {"type": "array", "items": {"type": "integer"}}
- ]
- },
- {
- "type": "string",
- "name": "secondString"
- }
- ]
- }
- ]
- }
-]
« no previous file with comments | « tools/json_schema_compiler/test/font_settings.json ('k') | tools/json_schema_compiler/test/functions_as_parameters.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698