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

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

Issue 2204673004: WIP - WebMediaPlayer switch media renderer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Get Audio/Video config from PipelineMetadata. And rebase. Created 4 years, 2 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
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("//third_party/protobuf/proto_library.gni") 5 import("//third_party/protobuf/proto_library.gni")
6 import("//testing/test.gni") 6 import("//testing/test.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 11 matching lines...) Expand all
22 22
23 deps = [ 23 deps = [
24 "//base", 24 "//base",
25 ] 25 ]
26 26
27 public_deps = [ 27 public_deps = [
28 ":media_remoting_proto", 28 ":media_remoting_proto",
29 ] 29 ]
30 } 30 }
31 31
32 test("media_remoting_unittests") { 32 source_set("remoting") {
33 sources = [ 33 sources = [
34 "remoting_controller.cc",
35 "remoting_controller.h",
36 "remoting_renderer_factory.cc",
37 "remoting_renderer_factory.h",
38 ]
39 deps = [
40 "//base",
41 "//media",
42 "//media/base",
43 "//media/mojo/interfaces:remoting",
44 ]
45 }
46
47 source_set("media_remoting_unittests") {
48 testonly = true
49 sources = [
50 "remoting_controller_unittest.cc",
34 "rpc/proto_utils_unittest.cc", 51 "rpc/proto_utils_unittest.cc",
35 ] 52 ]
36 53
37 deps = [ 54 deps = [
55 ":remoting",
38 ":rpc", 56 ":rpc",
39 "//base", 57 "//base",
40 "//base/test:run_all_unittests",
41 "//base/test:test_support", 58 "//base/test:test_support",
42 "//media", 59 "//media",
60 "//media/mojo/interfaces:remoting",
43 "//testing/gmock", 61 "//testing/gmock",
44 "//testing/gtest", 62 "//testing/gtest",
45 "//ui/gfx:test_support", 63 "//ui/gfx:test_support",
46 "//ui/gfx/geometry", 64 "//ui/gfx/geometry",
47 ] 65 ]
48 } 66 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698