| # 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/dart/dart_library.gni") | 
 | import("//build/dart/test.gni") | 
 |  | 
 | dart_library("client") { | 
 |   package_name = "sl4f" | 
 |  | 
 |   sdk_category = "partner" | 
 |  | 
 |   sources = [ | 
 |     "sl4f.dart", | 
 |     "src/audio.dart", | 
 |     "src/dump.dart", | 
 |     "src/exceptions.dart", | 
 |     "src/input.dart", | 
 |     "src/inspect.dart", | 
 |     "src/modular.dart", | 
 |     "src/performance.dart", | 
 |     "src/scenic.dart", | 
 |     "src/setui.dart", | 
 |     "src/sl4f_client.dart", | 
 |     "src/storage.dart", | 
 |     "src/webdriver.dart", | 
 |   ] | 
 |  | 
 |   deps = [ | 
 |     "//third_party/dart-pkg/pub/http", | 
 |     "//third_party/dart-pkg/pub/image", | 
 |     "//third_party/dart-pkg/pub/logging", | 
 |     "//third_party/dart-pkg/pub/meta", | 
 |     "//third_party/dart-pkg/pub/pedantic", | 
 |     "//third_party/dart-pkg/pub/webdriver", | 
 |   ] | 
 | } | 
 |  | 
 | dart_test("sl4f_client_tests") { | 
 |   sources = [ | 
 |     "dump_test.dart", | 
 |     "input_test.dart", | 
 |     "inspect_test.dart", | 
 |     "modular_test.dart", | 
 |     "performance_test.dart", | 
 |     "scenic_test.dart", | 
 |     "storage_test.dart", | 
 |     "webdriver_test.dart", | 
 |   ] | 
 |  | 
 |   deps = [ | 
 |     ":client", | 
 |     "//third_party/dart-pkg/pub/glob", | 
 |     "//third_party/dart-pkg/pub/image", | 
 |     "//third_party/dart-pkg/pub/mockito", | 
 |     "//third_party/dart-pkg/pub/test", | 
 |   ] | 
 | } | 
 |  | 
 | group("tests") { | 
 |   testonly = true | 
 |  | 
 |   deps = [ | 
 |     ":sl4f_client_tests($host_toolchain)", | 
 |   ] | 
 | } |