blob: 60597d3e1b19da18a8a25f38b1cd2649dff25bee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 2021 The Chromium 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("//chromecast/chromecast.gni")
import("//testing/test.gni")
cast_source_set("platform_info_serializer") {
sources = [
"platform_info_serializer.cc",
"platform_info_serializer.h",
]
public_deps = [
"//base",
"//chromecast/public/media",
]
}
test("cast_shared_unittests") {
sources = [ "platform_info_serializer_unittest.cc" ]
deps = [
":platform_info_serializer",
"//testing/gmock",
"//testing/gtest",
"//testing/gtest:gtest_main",
]
}
|