1# Copyright 2019 The Fuchsia 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 5import("../../../gni/angle.gni") 6 7assert(is_fuchsia) 8 9config("config") { 10 include_dirs = [ "." ] 11} 12 13angle_shared_library("fuchsia_egl") { 14 sources = [ "fuchsia_egl.c" ] 15 public = [ "fuchsia_egl.h" ] 16 public_configs = [ ":config" ] 17 deps = [ ":backend" ] 18} 19 20angle_source_set("backend") { 21 public = [ "fuchsia_egl_backend.h" ] 22} 23