mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-27 06:43:32 +00:00
6505e1c4ad
Differential Revision: https://phabricator.services.mozilla.com/D224075
17 lines
391 B
Plaintext
17 lines
391 B
Plaintext
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" ]
|
|
}
|
|
}
|