Unbreak "os" stuff in shared d8 builds.
Note that "os" still has no properties on Windows, but at least it's there. BUG=v8:3407 LOG=y R=jkummerow@chromium.org Review URL: https://codereview.chromium.org/356843005 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@22058 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
parent
0fbb59747c
commit
aac4a062d4
@ -2,22 +2,18 @@
|
||||
// Use of this source code is governed by a BSD-style license that can be
|
||||
// found in the LICENSE file.
|
||||
|
||||
|
||||
#include <errno.h>
|
||||
#include <fcntl.h>
|
||||
#include <signal.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <sys/select.h>
|
||||
#include <sys/stat.h>
|
||||
#include <sys/time.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/wait.h>
|
||||
#include <time.h>
|
||||
#include <unistd.h>
|
||||
|
||||
|
||||
#include "src/d8.h"
|
||||
#include "src/d8-debug.h"
|
||||
#include "src/debug.h"
|
||||
|
||||
|
||||
namespace v8 {
|
||||
|
@ -2,11 +2,7 @@
|
||||
// Use of this source code is governed by a BSD-style license that can be
|
||||
// found in the LICENSE file.
|
||||
|
||||
|
||||
#include "src/api.h"
|
||||
#include "src/d8.h"
|
||||
#include "src/d8-debug.h"
|
||||
#include "src/debug.h"
|
||||
|
||||
|
||||
namespace v8 {
|
||||
|
@ -872,11 +872,9 @@ Handle<ObjectTemplate> Shell::CreateGlobalTemplate(Isolate* isolate) {
|
||||
performance_template);
|
||||
#endif // !V8_SHARED
|
||||
|
||||
#if !defined(V8_SHARED) && !defined(_WIN32) && !defined(_WIN64)
|
||||
Handle<ObjectTemplate> os_templ = ObjectTemplate::New(isolate);
|
||||
AddOSMethods(isolate, os_templ);
|
||||
global_template->Set(String::NewFromUtf8(isolate, "os"), os_templ);
|
||||
#endif // !V8_SHARED && !_WIN32 && !_WIN64
|
||||
|
||||
return global_template;
|
||||
}
|
||||
|
16
src/d8.gyp
16
src/d8.gyp
@ -57,6 +57,14 @@
|
||||
'libraries': [ '-lreadline', ],
|
||||
'sources': [ 'd8-readline.cc' ],
|
||||
}],
|
||||
['(OS=="linux" or OS=="mac" or OS=="freebsd" or OS=="netbsd" \
|
||||
or OS=="openbsd" or OS=="solaris" or OS=="android" \
|
||||
or OS=="qnx")', {
|
||||
'sources': [ 'd8-posix.cc', ]
|
||||
}],
|
||||
[ 'OS=="win"', {
|
||||
'sources': [ 'd8-windows.cc', ]
|
||||
}],
|
||||
[ 'component!="shared_library"', {
|
||||
'sources': [ 'd8-debug.cc', '<(SHARED_INTERMEDIATE_DIR)/d8-js.cc', ],
|
||||
'conditions': [
|
||||
@ -69,14 +77,6 @@
|
||||
'd8_js2c',
|
||||
],
|
||||
}],
|
||||
['(OS=="linux" or OS=="mac" or OS=="freebsd" or OS=="netbsd" \
|
||||
or OS=="openbsd" or OS=="solaris" or OS=="android" \
|
||||
or OS=="qnx")', {
|
||||
'sources': [ 'd8-posix.cc', ]
|
||||
}],
|
||||
[ 'OS=="win"', {
|
||||
'sources': [ 'd8-windows.cc', ]
|
||||
}],
|
||||
],
|
||||
}],
|
||||
['v8_enable_vtunejit==1', {
|
||||
|
Loading…
Reference in New Issue
Block a user