| # Copyright 2017 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/go/go_test.gni") |
| import("//build/package.gni") |
| |
| go_test("device_settings_integration_test") { |
| gopackage = "device_settings" |
| go_dependencies = [ |
| { |
| package = "device_settings" |
| }, |
| { |
| package = "app" |
| source = "//garnet/public/lib/app/go/src/app" |
| }, |
| { |
| package = "fidl" |
| source = "//garnet/public/lib/fidl/go/src/fidl" |
| }, |
| { |
| package = "svc" |
| source = "//garnet/public/lib/svc/go/src/svc" |
| }, |
| { |
| package = "garnet/public/lib/app/fidl" |
| source = "$root_gen_dir/go/src/garnet/public/lib/app/fidl" |
| }, |
| { |
| package = "garnet/public/lib/device_settings/fidl" |
| source = "$root_gen_dir/go/src/garnet/public/lib/device_settings/fidl" |
| }, |
| ] |
| deps = [ |
| "//garnet/public/lib/app/fidl", |
| "//garnet/public/lib/device_settings/fidl", |
| ] |
| } |
| |
| package("device_settings_gotests") { |
| testonly = true |
| system_image = true |
| |
| deps = [ |
| ":device_settings_integration_test", |
| ] |
| tests = [ { |
| name = "device_settings_integration_test" |
| } ] |
| } |