mirror of
https://github.com/electron/electron.git
synced 2026-01-09 15:38:08 -05:00
build: rename sandbox bundle (#17831)
This commit is contained in:
8
BUILD.gn
8
BUILD.gn
@@ -80,7 +80,7 @@ npm_action("atom_browserify_sandbox_unwrapped") {
|
||||
inputs = auto_filenames.sandbox_browserify_deps
|
||||
|
||||
outputs = [
|
||||
"$target_gen_dir/js2c/preload_bundle_unwrapped.js",
|
||||
"$target_gen_dir/js2c/sandbox_bundle_unwrapped.js",
|
||||
]
|
||||
|
||||
args = [
|
||||
@@ -194,11 +194,11 @@ js_wrap("atom_browserify_sandbox") {
|
||||
]
|
||||
|
||||
inputs = [
|
||||
"$target_gen_dir/js2c/preload_bundle_unwrapped.js",
|
||||
"$target_gen_dir/js2c/sandbox_bundle_unwrapped.js",
|
||||
]
|
||||
|
||||
outputs = [
|
||||
"$target_gen_dir/js2c/preload_bundle.js",
|
||||
"$target_gen_dir/js2c/sandbox_bundle.js",
|
||||
]
|
||||
}
|
||||
|
||||
@@ -223,7 +223,7 @@ action("atom_js2c") {
|
||||
browserify_sources = [
|
||||
"$target_gen_dir/js2c/content_script_bundle.js",
|
||||
"$target_gen_dir/js2c/isolated_bundle.js",
|
||||
"$target_gen_dir/js2c/preload_bundle.js",
|
||||
"$target_gen_dir/js2c/sandbox_bundle.js",
|
||||
]
|
||||
|
||||
sources = browserify_sources + [
|
||||
|
||||
@@ -218,14 +218,14 @@ void AtomSandboxedRendererClient::DidCreateScriptContext(
|
||||
InitializeBindings(binding, context, render_frame->IsMainFrame());
|
||||
AddRenderBindings(isolate, binding);
|
||||
|
||||
std::vector<v8::Local<v8::String>> preload_bundle_params = {
|
||||
std::vector<v8::Local<v8::String>> sandbox_preload_bundle_params = {
|
||||
node::FIXED_ONE_BYTE_STRING(isolate, "binding")};
|
||||
|
||||
std::vector<v8::Local<v8::Value>> preload_bundle_args = {binding};
|
||||
std::vector<v8::Local<v8::Value>> sandbox_preload_bundle_args = {binding};
|
||||
|
||||
node::per_process::native_module_loader.CompileAndCall(
|
||||
isolate->GetCurrentContext(), "electron/js2c/preload_bundle",
|
||||
&preload_bundle_params, &preload_bundle_args, nullptr);
|
||||
isolate->GetCurrentContext(), "electron/js2c/sandbox_bundle",
|
||||
&sandbox_preload_bundle_params, &sandbox_preload_bundle_args, nullptr);
|
||||
|
||||
v8::HandleScope handle_scope(isolate);
|
||||
v8::Context::Scope context_scope(context);
|
||||
|
||||
Reference in New Issue
Block a user