We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89c1b23 commit 1be5152Copy full SHA for 1be5152
impeller/renderer/backend/BUILD.gn
@@ -8,14 +8,17 @@ group("backend") {
8
public_deps = []
9
10
if (impeller_enable_metal) {
11
+ assert(is_mac || is_ios)
12
public_deps += [ "metal" ]
13
}
14
15
if (impeller_enable_opengles) {
16
+ assert(is_mac || is_linux || is_win || is_android)
17
public_deps += [ "gles" ]
18
19
20
if (impeller_enable_vulkan) {
21
22
public_deps += [ "vulkan" ]
23
24
0 commit comments