xref: /aosp_15_r20/external/angle/src/libANGLE/renderer/null/BUILD.gn (revision 8975f5c5ed3d1c378011245431ada316dfb6f244)
1# Copyright 2020 The ANGLE Project Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4#
5# This file houses the build configuration for the ANGLE NULL back-end.
6
7import("../../../../gni/angle.gni")
8import("null_backend.gni")
9
10assert(angle_enable_null)
11
12config("angle_null_backend_config") {
13  defines = [ "ANGLE_ENABLE_NULL" ]
14}
15
16angle_source_set("angle_null_backend") {
17  sources = null_backend_sources
18
19  public_deps = [ "$angle_root:libANGLE_headers" ]
20}
21