From 94b5256658ae9ea4d4214071119271f9241943df Mon Sep 17 00:00:00 2001 From: Pranjal Jumde Date: Tue, 2 Apr 2019 21:57:22 -0700 Subject: [PATCH] enabling stp by default --- lib/config.js | 1 + package.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/config.js b/lib/config.js index 1983da71e036f..b72cc748b340f 100644 --- a/lib/config.js +++ b/lib/config.js @@ -79,6 +79,7 @@ Config.prototype.buildArgs = function () { is_debug: this.buildConfig !== 'Release', dcheck_always_on: this.buildConfig !== 'Release', brave_channel: this.channel, + brave_stp_enabled: true, google_api_key: this.googleApiKey, brave_google_api_key: this.braveGoogleApiKey, brave_google_api_endpoint: this.googleApiEndpoint, diff --git a/package.json b/package.json index c5a027dbea2d4..7dcb502f2ebb1 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "upload": "node ./scripts/commands.js upload", "update_patches": "node ./scripts/commands.js update_patches", "apply_patches": "node ./scripts/sync.js --run_hooks", - "start": "node ./scripts/commands.js start", + "start": "node ./scripts/commands.js start --enable-smart-tracking-protection", "network-audit": "node ./scripts/commands.js start --enable_brave_update --network_log --user_data_dir_name=brave-network-test", "push_l10n": "node ./scripts/commands.js push_l10n", "pull_l10n": "node ./scripts/commands.js pull_l10n",