OLD | NEW |
---|---|
(Empty) | |
1 { | |
2 "modules" : [ | |
chenwilliam
2017/04/25 01:09:07
What do you think about creating an extends proper
dgozman
2017/04/25 21:08:28
Maybe later. Let's keep the idea around.
| |
3 { "name": "platform", "type": "autostart" }, | |
4 { "name": "dom_extension", "type": "autostart" }, | |
5 { "name": "main", "type": "autostart" }, | |
6 { "name": "components", "type": "autostart"}, | |
7 { "name": "ui", "type": "autostart" }, | |
8 { "name": "sdk", "type": "autostart" }, | |
9 { "name": "protocol", "type": "autostart" }, | |
10 { "name": "host", "type": "autostart" }, | |
11 { "name": "common", "type": "autostart" }, | |
12 { "name": "emulation", "type": "autostart" }, | |
13 { "name": "workspace", "type": "autostart" }, | |
14 { "name": "bindings", "type": "autostart" }, | |
15 { "name": "persistence", "type": "autostart" }, | |
16 { "name": "extensions", "type": "autostart" }, | |
17 { "name": "services", "type": "autostart" }, | |
18 { "name": "elements", "condition": "!v8only" }, | |
19 { "name": "network", "condition": "!v8only" }, | |
20 { "name": "network_group_lookup", "condition": "!v8only", "type": "remote" } , | |
21 { "name": "sources" }, | |
22 { "name": "timeline", "condition": "!v8only" }, | |
23 { "name": "timeline_model", "condition": "!v8only" }, | |
24 { "name": "product_registry", "condition": "!v8only", "type": "remote" }, | |
25 { "name": "profiler" }, | |
26 { "name": "resources", "condition": "!v8only" }, | |
27 { "name": "audits", "condition": "!v8only" }, | |
28 { "name": "audits2", "condition": "!v8only" }, | |
29 { "name": "devices", "condition": "!v8only" }, | |
30 { "name": "security", "condition": "!v8only" }, | |
31 { "name": "console" }, | |
32 { "name": "source_frame" }, | |
33 { "name": "text_editor" }, | |
34 { "name": "cm" }, | |
35 { "name": "cm_modes", "type": "remote" }, | |
36 { "name": "settings" }, | |
37 { "name": "layers", "condition": "!v8only" }, | |
38 { "name": "layer_viewer", "condition": "!v8only" }, | |
39 { "name": "snippets" }, | |
40 { "name": "diff" }, | |
41 { "name": "terminal", "type": "remote" }, | |
42 { "name": "sass", "condition": "!v8only" }, | |
43 { "name": "accessibility", "condition": "!v8only", "type": "remote" }, | |
44 { "name": "animation", "condition": "!v8only" }, | |
45 { "name": "coverage" }, | |
46 { "name": "screencast", "condition": "remoteFrontend", "type": "remote" }, | |
47 { "name": "emulated_devices", "condition": "!v8only" , "type": "remote" }, | |
48 { "name": "perf_ui" }, | |
49 { "name": "quick_open" }, | |
50 { "name": "cookie_table" }, | |
51 { "name": "inline_editor" }, | |
52 { "name": "color_picker" }, | |
53 { "name": "data_grid" }, | |
54 { "name": "heap_snapshot_model" }, | |
55 { "name": "network_conditions", "type": "autostart"}, | |
56 { "name": "event_listeners" }, | |
57 { "name": "object_ui"}, | |
58 { "name": "help", "type": "autostart"}, | |
59 { "name": "workspace_diff" }, | |
60 { "name": "console_model", "type": "autostart"}, | |
61 { "name": "network_log", "type": "autostart"}, | |
62 { "name": "text_utils", "type": "autostart"}, | |
63 { "name": "changes"}, | |
64 { "name": "test_runner", "type": "autostart" }, | |
65 { "name": "integration_test_runner", "type": "autostart" } | |
66 ], | |
67 | |
68 "has_html": true | |
69 } | |
OLD | NEW |