aboutsummaryrefslogtreecommitdiff
path: root/BUILD.gn
diff options
context:
space:
mode:
authorDavid Reveman <reveman@google.com>2019-05-02 08:23:46 -0400
committerDavid Reveman <reveman@google.com>2019-05-02 08:51:52 -0400
commitaa65ad660bcb2e8ba56faad5340fdca8db7853ea (patch)
tree304aa14ed4d828f665a734f91b5b855df331b762 /BUILD.gn
parent3c7b3cac09df5e8c49a6af16dbc91c2818ee67ea (diff)
downloadgoldfish-opengl-aa65ad660bcb2e8ba56faad5340fdca8db7853ea.tar.gz
[vulkan] Use C++ FIDL bindings and add Android.bp
Update the code to use C++ FIDL bindings everywhere instead of using C bindings in some places. No change in behavior. This also adds an Android.bp file that can be used to build a libvulkan_goldfish.so for Fuchsia outside the Fuchsia tree. Tracing is temporarily disabled for this build. Change-Id: I96b29497cd7b6f4fd6c614d9c653dc5b1830feaf
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn7
1 files changed, 4 insertions, 3 deletions
diff --git a/BUILD.gn b/BUILD.gn
index 6b4bc0ce..9e487126 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -80,6 +80,7 @@ shared_library("vulkan_goldfish") {
cflags_cc = [
"-Wno-missing-field-initializers",
+ "-Wno-newline-eof",
"-Wno-unused-function",
"-Wno-unused-value",
"-Wno-unused-variable",
@@ -104,9 +105,9 @@ shared_library("vulkan_goldfish") {
]
deps = [
- "//zircon/public/fidl/fuchsia-hardware-goldfish-address-space:fuchsia-hardware-goldfish-address-space_c",
- "//zircon/public/fidl/fuchsia-hardware-goldfish-control:fuchsia-hardware-goldfish-control_c",
- "//zircon/public/fidl/fuchsia-hardware-goldfish-pipe:fuchsia-hardware-goldfish-pipe_c",
+ "//zircon/public/fidl/fuchsia-hardware-goldfish-address-space",
+ "//zircon/public/fidl/fuchsia-hardware-goldfish-control",
+ "//zircon/public/fidl/fuchsia-hardware-goldfish-pipe",
"//zircon/public/fidl/fuchsia-sysmem",
"//zircon/public/lib/fdio",
"//zircon/public/lib/trace",