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

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: Fixed Chromium copyright statement. 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
« no previous file with comments | « BUILD.gn ('k') | chrome/browser/media/router/media_route.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "//url",
11 ]
12 sources = [
13 "media_route.cc",
14 "media_route.h",
15 "media_route_id.h",
16 "media_sink.cc",
17 "media_sink.h",
18 "media_source.cc",
19 "media_source.h",
20 "route_id_manager.cc",
sky 2015/03/11 19:53:56 I don't see media_source_helper.* listed here.
Kevin M 2015/03/11 20:47:41 Done.
21 "route_id_manager.h",
22 ]
23 }
24
25 source_set("unit_tests") {
26 testonly = true
27 deps = [
28 ":router",
29 "//base/test:test_support",
30 "//testing/gmock",
31 "//testing/gtest",
32 ]
33 sources = [
34 "media_route_unittest.cc",
35 "media_sink_unittest.cc",
36 "media_source_unittest.cc",
37 "route_id_manager_unittest.cc",
38 ]
39 }
40
41 # Optional standalone test binary, for faster isolated builds.
42 test("unit_tests_main") {
43 deps = [
44 ":unit_tests",
45 "//testing/gmock:gmock_main",
46 ]
47 sources = [
48 ":unittest_files",
49 ]
50 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | chrome/browser/media/router/media_route.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698