Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(919)

Side by Side Diff: chrome/browser/media/router/BUILD.gn

Issue 949293004: Add media router common classes and unittests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Resync with latest changes Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4 #
5 import("//testing/test.gni")
6
7 source_set("router") {
8 deps = [
9 "//base",
10 ]
11 sources = [
12 "media_route.cc",
13 "media_route.h",
14 "media_route_id.h",
15 "media_sink.cc",
16 "media_sink.h",
17 "media_source.cc",
18 "media_source.h",
19 ]
20 }
21
22 source_set("unit_tests") {
23 testonly = true
24 deps = [
25 ":router",
26 "//base/test:test_support",
27 "//testing/gmock",
28 "//testing/gtest",
29 ]
30 sources = [
31 "media_route_unittest.cc",
32 "media_sink_unittest.cc",
33 "media_source_unittest.cc",
34 ]
35 }
36
37 # Optional standalone test binary, for faster isolated builds.
38 test("unit_tests_main") {
39 deps = [
40 ":unit_tests",
41 "//testing/gmock:gmock_main",
42 ]
43 sources = [
44 ":unittest_files",
45 ]
46 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698