| # 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. |
| |
| import("//build/components.gni") |
| import("//build/test.gni") |
| import("//build/testing/environments.gni") |
| |
| group("tests") { |
| testonly = true |
| deps = [ |
| ":pkg", |
| "..:pkg", |
| ] |
| } |
| |
| test("intl_services_test") { |
| sources = [ "intl_services_test.cc" ] |
| deps = [ |
| "//garnet/public/lib/fostr/fidl/fuchsia.intl", |
| "//garnet/public/lib/fostr/fidl/fuchsia.settings", |
| "//sdk/fidl/fuchsia.intl", |
| "//sdk/fidl/fuchsia.settings", |
| "//sdk/lib/sys/cpp/testing:integration", |
| "//src/lib/fxl/test:gtest_main", |
| "//third_party/googletest:gtest", |
| ] |
| } |
| |
| fuchsia_unittest_package("pkg") { |
| package_name = "intl_services_tests" |
| component_name = "intl_services_test" |
| manifest = "meta/intl_services_test.cmx" |
| deps = [ |
| ":intl_services_test", |
| "..:pkg", |
| "//garnet/bin/setui", |
| "//garnet/bin/timezone", |
| "//src/sys/device_settings:device_settings_manager", |
| "//src/sys/stash", |
| ] |
| } |