| Index: build/config/BUILD.gn
|
| diff --git a/build/config/BUILD.gn b/build/config/BUILD.gn
|
| index 1203c0839b426f65dea4986ff7739fc75804ee04..ff95b0be1a7ed4b9cac205ef63013abb291a8185 100644
|
| --- a/build/config/BUILD.gn
|
| +++ b/build/config/BUILD.gn
|
| @@ -182,6 +182,15 @@ config("feature_flags") {
|
| if (enable_one_click_signin) {
|
| defines += [ "ENABLE_ONE_CLICK_SIGNIN" ]
|
| }
|
| + if (safe_browsing_mode == 1) {
|
| + defines += [ "FULL_SAFE_BROWSING" ]
|
| + defines += [ "SAFE_BROWSING_CSD" ]
|
| + defines += [ "SAFE_BROWSING_DATABASE" ]
|
| + defines += [ "SAFE_BROWSING_SERVICE" ]
|
| + } else if (safe_browsing_mode == 2) {
|
| + defines += [ "MOBILE_SAFE_BROWSING" ]
|
| + defines += [ "SAFE_BROWSING_SERVICE" ]
|
| + }
|
| }
|
|
|
| # Debug/release ----------------------------------------------------------------
|
|
|