| Index: build/config/BUILD.gn
|
| diff --git a/build/config/BUILD.gn b/build/config/BUILD.gn
|
| index 2d1dd1ed7d4dbcf0184722fe87f9de3928d087c3..60f4d1b120aadcd5f94bbf6a2708ca183ba9b06c 100644
|
| --- a/build/config/BUILD.gn
|
| +++ b/build/config/BUILD.gn
|
| @@ -44,11 +44,10 @@ declare_args() {
|
| # For now we define these globally to match the current GYP build.
|
| config("feature_flags") {
|
| # TODO(brettw) this probably needs to be parameterized.
|
| - defines = [ "V8_DEPRECATION_WARNINGS" ] # Don't use deprecated V8 APIs anywhere.
|
| -
|
| - if (cld_version > 0) {
|
| - defines += [ "CLD_VERSION=$cld_version" ]
|
| - }
|
| + defines = [
|
| + "V8_DEPRECATION_WARNINGS", # Don't use deprecated V8 APIs anywhere.
|
| + "CLD_VERSION=$cld_version",
|
| + ]
|
| if (enable_mdns) {
|
| defines += [ "ENABLE_MDNS=1" ]
|
| }
|
|
|