blob: 3ae377ac9a376101a27ffec17c8430f1722a1074 [file] [log] [blame]
# Copyright 2018 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("//build/package.gni")
executable("bin") {
output_name = "tiles_ctl"
sources = [ "main.cc" ]
deps = [
"//sdk/fidl/fuchsia.developer.tiles",
"//sdk/fidl/fuchsia.ui.gfx",
"//sdk/lib/fdio",
"//sdk/lib/sys/cpp",
"//src/lib/files",
"//src/lib/fsl",
"//src/lib/fxl",
]
# TODO(fxbug.dev/58162): delete the below and fix compiler warnings
configs += [ "//build/config:Wno-conversion" ]
}
package("tiles_ctl") {
deps = [ ":bin" ]
meta = [
{
path = "meta/tiles_ctl.cmx"
dest = "tiles_ctl.cmx"
},
]
binaries = [
{
shell = true
name = "tiles_ctl"
},
]
}