diff options
| author | Leon Clarke <leonclarke@google.com> | 2010-01-27 17:25:45 +0000 |
|---|---|---|
| committer | Leon Clarke <leonclarke@google.com> | 2010-01-27 17:31:21 +0000 |
| commit | d91b9f7d46489a9ee00f9cb415630299c76a502b (patch) | |
| tree | 741552f95883bb7461cf7c1d36335cef68804a5b /src/SConscript | |
| parent | eab96aab0834f21954b5d6aa6366bcfb348ed811 (diff) | |
| download | android_external_v8-d91b9f7d46489a9ee00f9cb415630299c76a502b.tar.gz android_external_v8-d91b9f7d46489a9ee00f9cb415630299c76a502b.tar.bz2 android_external_v8-d91b9f7d46489a9ee00f9cb415630299c76a502b.zip | |
Merge from v8 at revision 3723
Diffstat (limited to 'src/SConscript')
| -rwxr-xr-x | src/SConscript | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/SConscript b/src/SConscript index 4eb87224..94428f2c 100755 --- a/src/SConscript +++ b/src/SConscript @@ -60,6 +60,7 @@ SOURCES = { flags.cc frame-element.cc frames.cc + full-codegen.cc func-name-inferrer.cc global-handles.cc handles.cc @@ -112,8 +113,8 @@ SOURCES = { arm/cpu-arm.cc arm/debug-arm.cc arm/disasm-arm.cc - arm/fast-codegen-arm.cc arm/frames-arm.cc + arm/full-codegen-arm.cc arm/ic-arm.cc arm/jump-target-arm.cc arm/macro-assembler-arm.cc @@ -135,8 +136,8 @@ SOURCES = { ia32/cpu-ia32.cc ia32/debug-ia32.cc ia32/disasm-ia32.cc - ia32/fast-codegen-ia32.cc ia32/frames-ia32.cc + ia32/full-codegen-ia32.cc ia32/ic-ia32.cc ia32/jump-target-ia32.cc ia32/macro-assembler-ia32.cc @@ -152,8 +153,8 @@ SOURCES = { x64/cpu-x64.cc x64/debug-x64.cc x64/disasm-x64.cc - x64/fast-codegen-x64.cc x64/frames-x64.cc + x64/full-codegen-x64.cc x64/ic-x64.cc x64/jump-target-x64.cc x64/macro-assembler-x64.cc @@ -168,6 +169,7 @@ SOURCES = { 'os:linux': ['platform-linux.cc', 'platform-posix.cc'], 'os:android': ['platform-linux.cc', 'platform-posix.cc'], 'os:macos': ['platform-macos.cc', 'platform-posix.cc'], + 'os:solaris': ['platform-solaris.cc', 'platform-posix.cc'], 'os:nullos': ['platform-nullos.cc'], 'os:win32': ['platform-win32.cc'], 'mode:release': [], @@ -196,6 +198,9 @@ D8_FILES = { 'os:openbsd': [ 'd8-posix.cc' ], + 'os:solaris': [ + 'd8-posix.cc' + ], 'os:win32': [ 'd8-windows.cc' ], |
