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

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

Issue 2261503002: Define remote playback proto buffer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove all change in src/BUILD.gn and media_options.gni 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
« no previous file with comments | « no previous file | media/remoting/OWNERS » ('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 2016 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("//third_party/protobuf/proto_library.gni")
6 import("//testing/test.gni")
7
8 proto_library("media_remoting_proto") {
9 proto_out_dir = "media/remoting"
10 sources = [
11 "proto/remoting_rpc_message.proto",
12 ]
13 }
14
15 source_set("rpc") {
16 sources = [
17 "rpc/proto_enum_utils.cc",
18 "rpc/proto_enum_utils.h",
19 "rpc/proto_utils.cc",
20 "rpc/proto_utils.h",
21 ]
22
23 deps = [
24 "//base",
25 ]
26
27 public_deps = [
28 ":media_remoting_proto",
29 ]
30 }
31
32 test("media_remoting_unittests") {
33 sources = [
34 "rpc/proto_utils_unittest.cc",
35 ]
36
37 deps = [
38 ":rpc",
39 "//base",
40 "//base/test:run_all_unittests",
41 "//base/test:test_support",
42 "//media",
43 "//testing/gmock",
44 "//testing/gtest",
45 "//ui/gfx:test_support",
46 "//ui/gfx/geometry",
47 ]
48 }
OLDNEW
« no previous file with comments | « no previous file | media/remoting/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698