1
0
Fork 0
firefox/third_party/BUILD.gn
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

16 lines
391 B
Text

declare_args() {
# These flags are enabled when running gn_processor.py based
# on the gn_target provided in the .json file (for example
# webrtc.json or abseil.json).
build_mozilla_webrtc = false
build_mozilla_absl = false
}
group("default") {
if (build_mozilla_webrtc) {
deps = [ "libwebrtc:webrtc" ]
}
if (build_mozilla_absl) {
deps = [ "abseil-cpp:absl" ]
}
}