blob: 3c4995692fb9eda14c4d64bf5f68da91f23dbc4d [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/components.gni")
executable("bin") {
output_name = "tiles_ctl"
sources = [ "main.cc" ]
deps = [
"//sdk/fidl/fuchsia.developer.tiles",
"//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" ]
}
fuchsia_shell_package("tiles_ctl") {
manifest = "meta/tiles_ctl.cmx"
deps = [ ":bin" ]
}