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

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

Issue 2165023003: [Extensions] Use compiled feature files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 4 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 2016 The Chromium Authors. All rights reserved. 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 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 "alpha": { 5 "alpha": {
6 "channel": "stable", 6 "channel": "stable",
7 "contexts": ["blessed_extension"], 7 "contexts": ["blessed_extension"],
8 "dependencies": ["permission:alpha"] 8 "dependencies": ["permission:alpha"]
9 }, 9 },
10 "beta": { 10 "beta": {
11 "extension_types": ["extension", "platform_app"], 11 "extension_types": ["extension", "platform_app"],
12 "whitelist": ["aaa", "bbb"], 12 "whitelist": ["aaa", "bbb"],
13 "blacklist": ["zzz", "yyy"], 13 "blacklist": ["zzz", "yyy"],
14 "component_extensions_auto_granted": false 14 "component_extensions_auto_granted": false
15 }, 15 },
16 "gamma": { 16 "gamma": {
17 "channel": "beta", 17 "channel": "beta",
18 "platforms": ["win", "mac"], 18 "platforms": ["win", "mac"],
19 "contexts": ["blessed_extension"], 19 "contexts": ["blessed_extension"],
20 "dependencies": ["permission:gamma"],
20 "extension_types": ["extension"], 21 "extension_types": ["extension"],
21 "internal": true 22 "internal": true
22 }, 23 },
23 "gamma.child": { 24 "gamma.child": {
24 "whitelist": ["ccc"], 25 "whitelist": ["ccc"],
25 "dependencies": ["permission:gamma.child"], 26 "dependencies": [],
26 "platforms": ["linux"] 27 "platforms": ["linux"]
27 }, 28 },
28 "gamma.unparented": { 29 "gamma.unparented": {
29 "blacklist": ["ddd"], 30 "blacklist": ["ddd"],
30 "contexts": ["unblessed_extension"], 31 "contexts": ["unblessed_extension"],
31 "noparent": true 32 "noparent": true
32 }, 33 },
34 "gamma.complex_unparented": [{
35 "channel": "stable",
36 "contexts": ["unblessed_extension"],
37 "noparent": true
38 }, {
39 "channel": "stable",
40 "contexts": ["unblessed_extension"],
41 "noparent": true
42 }],
33 "delta": { 43 "delta": {
34 "contexts": ["blessed_extension", "webui"], 44 "contexts": ["blessed_extension", "webui"],
35 "matches": ["*://example.com/*"] 45 "matches": ["*://example.com/*"]
36 }, 46 },
37 "complex": [{ 47 "complex": [{
38 "channel": "beta", 48 "channel": "beta",
39 "contexts": ["blessed_extension"], 49 "contexts": ["blessed_extension"],
40 "extension_types": ["extension"], 50 "extension_types": ["extension"],
41 "whitelist": ["aaa"] 51 "whitelist": ["aaa"]
42 }, { 52 }, {
43 "channel": "stable", 53 "channel": "stable",
44 "contexts": ["blessed_extension"], 54 "contexts": ["blessed_extension"],
45 "extension_types": ["extension"], 55 "extension_types": ["extension"],
46 "default_parent": true 56 "default_parent": true
47 }], 57 }],
48 "complex.child": { 58 "complex.child": {
49 "platforms": ["win"], 59 "platforms": ["win"],
50 "dependencies": ["permission:complex.child"] 60 "dependencies": ["permission:complex.child"]
51 }, 61 },
52 "uncompiled": { 62 "uncompiled": {
53 "contexts": ["blessed_extension"], 63 "contexts": ["blessed_extension"],
54 "nocompile": true 64 "nocompile": true
55 } 65 }
56 } 66 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698