blob: 77db90df55b006fcdcfc83436235e9ec29a1f8b0 [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/test.gni")
source_set("timeline") {
sources = [
"type_converters.cc",
"type_converters.h",
]
public_deps = [
":no_converters",
"//garnet/public/fidl/fuchsia.mediaplayer",
]
}
source_set("no_converters") {
sources = [
"timeline.h",
"timeline_function.cc",
"timeline_function.h",
"timeline_rate.cc",
"timeline_rate.h",
]
public_deps = [
"//garnet/public/lib/fxl",
]
}
test("tests") {
output_name = "media_lib_timeline_tests"
sources = [
"test/timeline_function_test.cc",
"test/timeline_rate_test.cc",
]
deps = [
":timeline",
"//garnet/public/lib/fsl",
"//third_party/googletest:gtest_main",
]
}