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

Side by Side Diff: tools/json_schema_compiler/test/features_test.json

Issue 2151583003: [Extensions] Add extension feature generation code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Include fix Created 4 years, 5 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
(Empty)
1 // Copyright 2016 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 {
5 "alpha": {
6 "channel": "stable",
7 "contexts": ["blessed_extension"],
8 "dependencies": ["permission:alpha"]
9 },
10 "beta": {
11 "extension_types": ["extension", "platform_app"],
12 "whitelist": ["aaa", "bbb"],
13 "blacklist": ["zzz", "yyy"],
14 "component_extensions_auto_granted": false
15 },
16 "gamma": {
17 "channel": "beta",
18 "platforms": ["win", "mac"],
19 "contexts": ["blessed_extension"],
20 "extension_types": ["extension"],
21 "internal": true
22 },
23 "gamma.child": {
24 "whitelist": ["ccc"],
25 "dependencies": ["permission:gamma.child"],
26 "platforms": ["linux"]
27 },
28 "gamma.unparented": {
29 "blacklist": ["ddd"],
30 "contexts": ["unblessed_extension"],
31 "noparent": true
32 },
33 "delta": {
34 "contexts": ["blessed_extension", "webui"],
35 "matches": ["*://example.com/*"]
36 },
37 "complex": [{
38 "channel": "beta",
39 "contexts": ["blessed_extension"],
40 "extension_types": ["extension"],
41 "whitelist": ["aaa"]
42 }, {
43 "channel": "stable",
44 "contexts": ["blessed_extension"],
45 "extension_types": ["extension"],
46 "default_parent": true
47 }],
48 "complex.child": {
49 "platforms": ["win"],
50 "dependencies": ["permission:complex.child"]
51 },
52 "uncompiled": {
53 "contexts": ["blessed_extension"],
54 "nocompile": true
55 }
56 }
OLDNEW
« no previous file with comments | « tools/json_schema_compiler/test/features_generation_unittest.cc ('k') | tools/json_schema_compiler/test/features_test2.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698