blob: 9a84b4cc9d9067edcc9fbd5183acffde88d623c0 [file] [log] [blame]
# 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/dart/dart_library.gni")
import("//build/fidl/fidl.gni")
fidl("services") {
name = "fuchsia.contacts.contentprovider"
sources = [
"fidl/contacts_content_provider.fidl",
]
}
dart_library("contacts_services") {
package_name = "contacts_services"
sources = [
"client.dart",
"src/contacts_content_provider_service_client.dart",
]
deps = [
"//topaz/app/contacts/services:services",
"//topaz/public/dart/fidl",
"//topaz/public/lib/app_driver/dart",
]
}