Hash :
468dfed3
Author :
Date :
2020-02-21T12:12:51
Reformat GN files Otherwise this blocks the CQ at presubmit. Bug: angleproject:3492 Change-Id: I3cf77c72daa358f5e1eabecf1dcb8808a1dc9e07 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2068538 Commit-Queue: Michael Spang <spang@chromium.org> Reviewed-by: Jamie Madill <jmadill@chromium.org>
# Copyright 2019 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("../../../gni/angle.gni")
assert(is_fuchsia)
config("config") {
include_dirs = [ "." ]
}
angle_shared_library("fuchsia_egl") {
sources = [ "fuchsia_egl.c" ]
public = [ "fuchsia_egl.h" ]
public_configs = [ ":config" ]
deps = [ ":backend" ]
}
angle_source_set("backend") {
public = [ "fuchsia_egl_backend.h" ]
}