blob: 231b5b227a9a7dafeb1d74c1640732de0d269293 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import("//build/config/chrome_build.gni")
declare_args() {
# Enable assistant implementation based on libassistant.
enable_cros_libassistant = is_chromeos && is_chrome_branded
enable_cros_on_device_assistant = false
# Enable a fake microphone, which can replay audio files as microphone input.
# See chromeos/assistant/tools/send-audio.sh
enable_fake_assistant_microphone = false
}
declare_args() {
# Enable Assistant integration tests using LibAssistant and a fake S3 server.
# This requires libassistant.so to support grpc communication with the S3
# server, which increases the library size, which is why we introduced this
# flag to disable them in the release builds.
enable_assistant_integration_tests = enable_cros_libassistant
}
|