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

Side by Side Diff: media/remoting/BUILD.gn

Issue 2435423002: Add media remoting unittests to media_unittests. (Closed)
Patch Set: Addressed comments. Created 4 years, 1 month 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 | « media/BUILD.gn ('k') | media/remoting/remoting_controller_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//testing/test.gni") 5 import("//testing/test.gni")
6 import("//third_party/protobuf/proto_library.gni") 6 import("//third_party/protobuf/proto_library.gni")
7 7
8 proto_library("media_remoting_proto") { 8 proto_library("media_remoting_proto") {
9 proto_out_dir = "media/remoting" 9 proto_out_dir = "media/remoting"
10 sources = [ 10 sources = [
(...skipping 25 matching lines...) Expand all
36 "remoting_renderer_factory.cc", 36 "remoting_renderer_factory.cc",
37 "remoting_renderer_factory.h", 37 "remoting_renderer_factory.h",
38 ] 38 ]
39 deps = [ 39 deps = [
40 "//base", 40 "//base",
41 "//media", 41 "//media",
42 "//media/mojo/interfaces:remoting", 42 "//media/mojo/interfaces:remoting",
43 ] 43 ]
44 } 44 }
45 45
46 test("media_remoting_unittests") { 46 source_set("media_remoting_tests") {
47 testonly = true
47 sources = [ 48 sources = [
48 "remoting_controller_unittest.cc", 49 "remoting_controller_unittest.cc",
49 "rpc/proto_utils_unittest.cc", 50 "rpc/proto_utils_unittest.cc",
50 ] 51 ]
51 52
52 deps = [ 53 deps = [
53 ":remoting", 54 ":remoting",
54 ":rpc", 55 ":rpc",
55 "//base", 56 "//base",
56 "//base/test:test_support", 57 "//base/test:test_support",
57 "//media", 58 "//media",
58 "//media/mojo/interfaces:remoting", 59 "//media/mojo/interfaces:remoting",
59 "//mojo/edk/test:run_all_unittests",
60 "//testing/gmock", 60 "//testing/gmock",
61 "//testing/gtest", 61 "//testing/gtest",
62 "//ui/gfx:test_support", 62 "//ui/gfx:test_support",
63 "//ui/gfx/geometry", 63 "//ui/gfx/geometry",
64 ] 64 ]
65 } 65 }
66
67 test("media_remoting_unittests") {
68 deps = [
69 ":media_remoting_tests",
70 "//media/test:run_all_unittests",
71 ]
72 }
OLDNEW
« no previous file with comments | « media/BUILD.gn ('k') | media/remoting/remoting_controller_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698