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