Commit 28ab46c5 authored by sgjesse@chromium.org's avatar sgjesse@chromium.org

Updated the snapshot builder to reflect the removed extensions in...

Updated the snapshot builder to reflect the removed extensions in http://codereview.chromium.org/6233.
Review URL: http://codereview.chromium.org/6440

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@419 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent b8a89fa3
......@@ -159,12 +159,8 @@ int main(int argc, char** argv) {
v8::V8::SetCounterFunction(counter_callback);
v8::HandleScope scope;
const int kExtensionCount = 5;
const char* extension_list[kExtensionCount] = { "v8/print",
"v8/load",
"v8/quit",
"v8/version",
"v8/gc" };
const int kExtensionCount = 1;
const char* extension_list[kExtensionCount] = { "v8/gc" };
v8::ExtensionConfiguration extensions(kExtensionCount, extension_list);
v8::Context::New(&extensions);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment