blob: 8af382e6dfab0ec7e8d0f899d32c7e7e5faa264b [file] [log] [blame]
# 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.
executable("test") {
output_name = "luis_configs_test"
testonly = true
sources = [ "configs_test.cc" ]
deps = [
"//garnet/public/lib/gtest",
"//src/camera/drivers/controller/luis:config",
"//src/camera/drivers/controller/test:constants",
"//src/lib/fxl/test:gtest_main",
]
# Increase the default stack size from 256 KB because creating the configs can take up a very
# large amount of stack and would otherwise cause crashes on ASAN builds.
ldflags = [ "-Wl,-z,stack-size=0x100000" ]
}