import("//tools/json_schema_compiler/json_schema_api.gni")
import("//ui/base/ui_features.gni")
+if (use_efl) {
+ import("//tizen_src/build/config/tizen_features.gni")
+}
+
if (is_win) {
import("//build/toolchain/win/midl.gni")
}
]
}
- if (is_tizen) {
+ if (tizen_atk_support) {
deps += [
+ "//components/services/storage/privileged/mojom",
"//content/services/auction_worklet/public/mojom",
"//media/mojo/mojom:remoting",
+ "//services/cert_verifier/public/mojom",
]
}
return Operand(rbp, -offset);
}
+#if !defined(__GNUC__) || defined(__clang__)
constexpr Operand kInstanceDataOperand =
GetStackSlot(WasmLiftoffFrameConstants::kInstanceDataOffset);
constexpr Operand kOSRTargetSlot = GetStackSlot(kOSRTargetOffset);
+#else
+const Operand kInstanceDataOperand =
+ GetStackSlot(WasmLiftoffFrameConstants::kInstanceDataOffset);
+
+const Operand kOSRTargetSlot = GetStackSlot(kOSRTargetOffset);
+#endif
inline Operand GetMemOp(LiftoffAssembler* assm, Register addr,
Register offset_reg, uintptr_t offset_imm,