forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFlagSpecificConfig
150 lines (150 loc) · 5.33 KB
/
FlagSpecificConfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
[
{
"name": "back-forward-cache",
"args": ["--enable-features=BackForwardCache"]
},
{
"name": "dangling-pointer-detection",
"args": ["--enable-features=PartitionAllocDanglingPtr:mode/crash"]
},
{
"name": "disable-layout-ng",
"args": ["--disable-blink-features=LayoutNG,LayoutNGBlockFragmentation"]
},
{
"name": "disable-site-isolation-trials",
"args": ["--disable-site-isolation-trials"]
},
{
"name": "enable-blink-heap-concurrent-marking",
"args": ["--enable-features=BlinkHeapConcurrentMarking"]
},
{
"name": "enable-percent-based-scrolling",
"args": ["--enable-features=PercentBasedScrolling"]
},
{
"name": "force-renderer-accessibility",
"args": ["--force-renderer-accessibility"]
},
{
"name": "future-js",
"args": ["--js-flags=--future"]
},
{
"name": "new-system-colors",
"args": ["--enable-blink-features=NewSystemColors"]
},
{
"name": "highdpi",
"args": ["--force-device-scale-factor=1.5"],
"smoke_file": "SmokeTests/highdpi"
},
{
"name": "skia-vulkan-swiftshader",
"args": [
"--enable-gpu-rasterization",
"--enable-features=Vulkan",
"--use-vulkan=swiftshader",
"--disable-vulkan-fallback-to-gl-for-testing"
],
"smoke_file": "SmokeTests/skia-vulkan-swiftshader"
},
{
"name": "webgpu",
"args": [
"--enable-unsafe-webgpu",
"--disable-dawn-features=disallow_unsafe_apis",
"--use-gpu-in-tests",
"--enable-accelerated-2d-canvas"
],
"comments": [
"--disable-dawn-features=disallow_unsafe_apis is added so 'unsafe'",
"APIs can be tested with WebGPU CTS",
"--use-gpu-in-tests is needed to initialize ANGLE, which in turn is",
"needed to tell Dawn which ANGLE adapter Chromium is using. This",
"helps match the test behavior with the browser.",
"--enable-accelerated-2d-canvas ensures that the canvas reference",
"tests are using GPU rather than CPU"
]
},
{
"name": "webgpu-swiftshader",
"args": [
"--enable-unsafe-webgpu",
"--use-webgpu-adapter=swiftshader",
"--disable-dawn-features=disallow_unsafe_apis",
"--use-gpu-in-tests",
"--enable-accelerated-2d-canvas"
],
"comments": [
"--disable-dawn-features=disallow_unsafe_apis is added so 'unsafe'",
"APIs can be tested with WebGPU CTS",
"--use-webgpu-adapter=swiftshader forces usage for the SwiftShader adapter",
"--use-gpu-in-tests is needed to initialize ANGLE, which in turn is",
"needed to tell Dawn which ANGLE adapter Chromium is using. This",
"helps match the test behavior with the browser.",
"--enable-accelerated-2d-canvas ensures that the canvas reference",
"tests are using GPU rather than CPU"
]
},
{
"name": "webgpu-swiftshader-with-backend-validation",
"args": [
"--enable-unsafe-webgpu",
"--use-webgpu-adapter=swiftshader",
"--enable-dawn-backend-validation",
"--disable-dawn-features=disallow_unsafe_apis",
"--use-gpu-in-tests",
"--enable-accelerated-2d-canvas"
],
"comments": [
"--disable-dawn-features=disallow_unsafe_apis is added so 'unsafe'",
"APIs can be tested with WebGPU CTS",
"--use-webgpu-adapter=swiftshader forces usage for the SwiftShader adapter",
"--use-gpu-in-tests is needed to initialize ANGLE, which in turn is",
"needed to tell Dawn which ANGLE adapter Chromium is using. This",
"helps match the test behavior with the browser.",
"--enable-accelerated-2d-canvas ensures that the canvas reference",
"tests are using GPU rather than CPU"
]
},
{
"name": "webgpu-with-backend-validation",
"args": [
"--enable-unsafe-webgpu",
"--enable-dawn-backend-validation",
"--disable-dawn-features=disallow_unsafe_apis",
"--use-gpu-in-tests",
"--enable-accelerated-2d-canvas"
],
"comments": [
"--disable-dawn-features=disallow_unsafe_apis is added so 'unsafe'",
"APIs can be tested with WebGPU CTS",
"--use-gpu-in-tests is needed to initialize ANGLE, which in turn is",
"needed to tell Dawn which ANGLE adapter Chromium is using. This",
"helps match the test behavior with the browser.",
"--enable-accelerated-2d-canvas ensures that the canvas reference",
"tests are using GPU rather than CPU"
]
},
{
"name": "webgpu-with-partial-backend-validation",
"args": [
"--enable-unsafe-webgpu",
"--enable-dawn-backend-validation=partial",
"--disable-dawn-features=disallow_unsafe_apis",
"--use-gpu-in-tests",
"--enable-accelerated-2d-canvas"
],
"comments": [
"--disable-dawn-features=disallow_unsafe_apis is added so 'unsafe'",
"APIs can be tested with WebGPU CTS",
"--use-gpu-in-tests is needed to initialize ANGLE, which in turn is",
"needed to tell Dawn which ANGLE adapter Chromium is using. This",
"helps match the test behavior with the browser.",
"--enable-accelerated-2d-canvas ensures that the canvas reference",
"tests are using GPU rather than CPU"
]
}
]