summaryrefslogtreecommitdiff
path: root/chromium/chromecast/chromecast.gni
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2020-10-29 10:46:47 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2020-11-02 12:02:10 +0000
commit99677208ff3b216fdfec551fbe548da5520cd6fb (patch)
tree476a4865c10320249360e859d8fdd3e01833b03a /chromium/chromecast/chromecast.gni
parentc30a6232df03e1efbd9f3b226777b07e087a1122 (diff)
downloadqtwebengine-chromium-99677208ff3b216fdfec551fbe548da5520cd6fb.tar.gz
BASELINE: Update Chromium to 86.0.4240.124
Change-Id: Ide0ff151e94cd665ae6521a446995d34a9d1d644 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/chromecast/chromecast.gni')
-rw-r--r--chromium/chromecast/chromecast.gni7
1 files changed, 5 insertions, 2 deletions
diff --git a/chromium/chromecast/chromecast.gni b/chromium/chromecast/chromecast.gni
index 6b59e2b7064..ea3ff09aed3 100644
--- a/chromium/chromecast/chromecast.gni
+++ b/chromium/chromecast/chromecast.gni
@@ -53,6 +53,9 @@ declare_args() {
# Set true for builds targeting Android Things.
is_android_things = false
+ # Set true for builds targeting Android appliances.
+ is_android_appliance = false
+
# Set true if the platform works as a single volume device, mapping all
# volume streams to a single one.
is_single_volume = false
@@ -114,7 +117,7 @@ declare_args() {
# Set to true to enable external Mojo services to communicate with services
# within cast_shell.
- enable_external_mojo_services = is_linux
+ enable_external_mojo_services = is_linux || is_chromeos
# Support Perfetto tracing of processes that depend on entry points in
# //chromecast/external_mojo/external_service_support
@@ -124,7 +127,7 @@ declare_args() {
audio_input_sample_rate = 16000
# Whether use unix sockets in Cast input/output stream.
- use_unix_sockets = is_linux
+ use_unix_sockets = is_linux || is_chromeos
# Set to true to enable audio capture service for audio input.
enable_audio_capture_service = false