* feat: remove enable_run_as_node flag * drop features.isRunAsNodeEnabled() * use IsEnvSet() helper in electron_main_linux.cc * cleanup [[maybe_unused]] --------- Co-authored-by: Milan Burda <miburda@microsoft.com>
		
			
				
	
	
		
			46 lines
		
	
	
	
		
			1.3 KiB
			
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
	
		
			1.3 KiB
			
		
	
	
	
		
			C++
		
	
	
	
	
	
// Copyright (c) 2022 Slack Technologies, Inc.
 | 
						|
// Use of this source code is governed by the MIT license that can be
 | 
						|
// found in the LICENSE file.
 | 
						|
 | 
						|
#include <cstdlib>
 | 
						|
#include <utility>
 | 
						|
 | 
						|
#include "base/at_exit.h"
 | 
						|
#include "base/base_switches.h"
 | 
						|
#include "base/command_line.h"
 | 
						|
#include "base/i18n/icu_util.h"
 | 
						|
#include "content/public/app/content_main.h"
 | 
						|
#include "electron/buildflags/buildflags.h"
 | 
						|
#include "electron/fuses.h"
 | 
						|
#include "shell/app/electron_main_delegate.h"  // NOLINT
 | 
						|
#include "shell/app/node_main.h"
 | 
						|
#include "shell/app/uv_stdio_fix.h"
 | 
						|
#include "shell/common/electron_command_line.h"
 | 
						|
#include "shell/common/electron_constants.h"
 | 
						|
 | 
						|
namespace {
 | 
						|
 | 
						|
bool IsEnvSet(const char* name) {
 | 
						|
  char* indicator = getenv(name);
 | 
						|
  return indicator && indicator[0] != '\0';
 | 
						|
}
 | 
						|
 | 
						|
}  // namespace
 | 
						|
 | 
						|
int main(int argc, char* argv[]) {
 | 
						|
  FixStdioStreams();
 | 
						|
 | 
						|
  if (electron::fuses::IsRunAsNodeEnabled() && IsEnvSet(electron::kRunAsNode)) {
 | 
						|
    base::i18n::InitializeICU();
 | 
						|
    base::AtExitManager atexit_manager;
 | 
						|
    return electron::NodeMain(argc, argv);
 | 
						|
  }
 | 
						|
 | 
						|
  electron::ElectronMainDelegate delegate;
 | 
						|
  content::ContentMainParams params(&delegate);
 | 
						|
  electron::ElectronCommandLine::Init(argc, argv);
 | 
						|
  params.argc = argc;
 | 
						|
  params.argv = const_cast<const char**>(argv);
 | 
						|
  base::CommandLine::Init(params.argc, params.argv);
 | 
						|
  return content::ContentMain(std::move(params));
 | 
						|
}
 |