summaryrefslogtreecommitdiff
path: root/chromium/chromecast/media/audio/mixer_service
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2018-12-10 16:19:40 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2018-12-10 16:01:50 +0000
commit51f6c2793adab2d864b3d2b360000ef8db1d3e92 (patch)
tree835b3b4446b012c75e80177cef9fbe6972cc7dbe /chromium/chromecast/media/audio/mixer_service
parent6036726eb981b6c4b42047513b9d3f4ac865daac (diff)
downloadqtwebengine-chromium-51f6c2793adab2d864b3d2b360000ef8db1d3e92.tar.gz
BASELINE: Update Chromium to 71.0.3578.93
Change-Id: I6a32086c33670e1b033f8b10e6bf1fd4da1d105d Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'chromium/chromecast/media/audio/mixer_service')
-rw-r--r--chromium/chromecast/media/audio/mixer_service/BUILD.gn54
1 files changed, 54 insertions, 0 deletions
diff --git a/chromium/chromecast/media/audio/mixer_service/BUILD.gn b/chromium/chromecast/media/audio/mixer_service/BUILD.gn
new file mode 100644
index 00000000000..091225b4866
--- /dev/null
+++ b/chromium/chromecast/media/audio/mixer_service/BUILD.gn
@@ -0,0 +1,54 @@
+# Copyright 2018 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//build/buildflag_header.gni")
+import("//chromecast/chromecast.gni")
+import("//third_party/protobuf/proto_library.gni")
+
+proto_library("proto") {
+ proto_out_dir = "chromecast/media/audio/mixer_service"
+ sources = [
+ "mixer_service.proto",
+ ]
+}
+
+use_unix_sockets = is_linux
+buildflag_header("buildflags") {
+ header = "mixer_service_buildflags.h"
+
+ flags = [ "USE_UNIX_SOCKETS=$use_unix_sockets" ]
+}
+
+cast_source_set("common") {
+ sources = [
+ "constants.h",
+ "proto_helpers.cc",
+ "proto_helpers.h",
+ ]
+
+ deps = [
+ ":buildflags",
+ ":proto",
+ "//base",
+ "//chromecast/net:small_message_socket",
+ "//net",
+ ]
+}
+
+cast_source_set("connection") {
+ sources = [
+ "mixer_service_connection.cc",
+ "mixer_service_connection.h",
+ ]
+
+ deps = [
+ ":buildflags",
+ ":common",
+ ":proto",
+ "//base",
+ "//chromecast/base",
+ "//chromecast/net:small_message_socket",
+ "//net",
+ ]
+}