Author: [email protected]
Date: Thu Mar 5 03:35:44 2009
New Revision: 1427
Modified:
branches/bleeding_edge/src/SConscript
branches/bleeding_edge/tools/v8.xcodeproj/project.pbxproj
branches/bleeding_edge/tools/visual_studio/v8_base.vcproj
Log:
Fixed projects after adding oprofile-agent* sources.
Review URL: http://codereview.chromium.org/40159
Modified: branches/bleeding_edge/src/SConscript
==============================================================================
--- branches/bleeding_edge/src/SConscript (original)
+++ branches/bleeding_edge/src/SConscript Thu Mar 5 03:35:44 2009
@@ -43,7 +43,7 @@
'flags.cc', 'frames.cc', 'global-handles.cc', 'handles.cc', 'hashmap.cc',
'heap.cc', 'ic.cc', 'interpreter-irregexp.cc', 'jsregexp.cc',
'jump-target.cc', 'log.cc', 'mark-compact.cc', 'messages.cc',
'objects.cc',
- 'parser.cc', 'property.cc', 'regexp-macro-assembler.cc',
+ 'oprofile-agent.cc', 'parser.cc', 'property.cc',
'regexp-macro-assembler.cc',
'regexp-macro-assembler-irregexp.cc', 'regexp-stack.cc',
'register-allocator.cc', 'rewriter.cc', 'runtime.cc', 'scanner.cc',
'scopeinfo.cc', 'scopes.cc', 'serialize.cc', 'snapshot-common.cc',
@@ -67,7 +67,7 @@
],
'simulator:arm': ['simulator-arm.cc'],
'os:freebsd': ['platform-freebsd.cc'],
- 'os:linux': ['platform-linux.cc', 'oprofile-agent.cc'],
+ 'os:linux': ['platform-linux.cc'],
'os:macos': ['platform-macos.cc'],
'os:nullos': ['platform-nullos.cc'],
'os:win32': ['platform-win32.cc'],
Modified: branches/bleeding_edge/tools/v8.xcodeproj/project.pbxproj
==============================================================================
--- branches/bleeding_edge/tools/v8.xcodeproj/project.pbxproj (original)
+++ branches/bleeding_edge/tools/v8.xcodeproj/project.pbxproj Thu Mar 5
03:35:44 2009
@@ -200,6 +200,8 @@
89F23C9E0E78D5FD006B2466 /* macro-assembler-arm.cc in Sources
*/ = {isa
= PBXBuildFile; fileRef = 897FF1540E719B8F00D62E90 /*
macro-assembler-arm.cc */; };
89F23C9F0E78D604006B2466 /* simulator-arm.cc in Sources */ =
{isa =
PBXBuildFile; fileRef = 897FF17D0E719B8F00D62E90 /* simulator-arm.cc */; };
89F23CA00E78D609006B2466 /* stub-cache-arm.cc in Sources */ =
{isa =
PBXBuildFile; fileRef = 897FF18A0E719B8F00D62E90 /* stub-cache-arm.cc */; };
+ 9FC86ABD0F5FEDAC00F22668 /* oprofile-agent.cc in Sources */ =
{isa =
PBXBuildFile; fileRef = 9FC86ABB0F5FEDAC00F22668 /* oprofile-agent.cc */; };
+ 9FC86ABE0F5FEDAC00F22668 /* oprofile-agent.cc in Sources */ =
{isa =
PBXBuildFile; fileRef = 9FC86ABB0F5FEDAC00F22668 /* oprofile-agent.cc */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
@@ -509,6 +511,8 @@
89B12E8D0E7FF2A40080BA62 /* presubmit.py */ = {isa =
PBXFileReference;
fileEncoding = 4; lastKnownFileType = text.script.python; path =
presubmit.py; sourceTree = "<group>"; };
89F23C870E78D5B2006B2466 /* libv8-arm.a */ = {isa =
PBXFileReference;
explicitFileType = archive.ar; includeInIndex = 0; path = "libv8-arm.a";
sourceTree = BUILT_PRODUCTS_DIR; };
89F23C950E78D5B6006B2466 /* v8_shell-arm */ = {isa =
PBXFileReference;
explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path
= "v8_shell-arm"; sourceTree = BUILT_PRODUCTS_DIR; };
+ 9FC86ABB0F5FEDAC00F22668 /* oprofile-agent.cc */ = {isa =
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp;
path = "oprofile-agent.cc"; sourceTree = "<group>"; };
+ 9FC86ABC0F5FEDAC00F22668 /* oprofile-agent.h */ = {isa =
PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h;
path = "oprofile-agent.h"; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
@@ -723,6 +727,8 @@
897FF1610E719B8F00D62E90 /* objects-inl.h */,
897FF1620E719B8F00D62E90 /* objects.cc */,
897FF1630E719B8F00D62E90 /* objects.h */,
+ 9FC86ABB0F5FEDAC00F22668 /* oprofile-agent.cc
*/,
+ 9FC86ABC0F5FEDAC00F22668 /* oprofile-agent.h */,
897FF1640E719B8F00D62E90 /* parser.cc */,
897FF1650E719B8F00D62E90 /* parser.h */,
89A15C6D0EE466A900B48DEB /* platform-freebsd.cc
*/,
@@ -1147,6 +1153,7 @@
58950D660F5551C200F3E8BA /* virtual-frame.cc in
Sources */,
58950D670F5551C400F3E8BA /*
virtual-frame-ia32.cc in Sources */,
89A88E2E0E71A6D60043BA31 /* zone.cc in Sources
*/,
+ 9FC86ABD0F5FEDAC00F22668 /* oprofile-agent.cc
in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -1246,6 +1253,7 @@
58950D680F5551CB00F3E8BA /* virtual-frame.cc in
Sources */,
58950D690F5551CE00F3E8BA /*
virtual-frame-arm.cc in Sources */,
89F23C820E78D5B2006B2466 /* zone.cc in Sources
*/,
+ 9FC86ABE0F5FEDAC00F22668 /* oprofile-agent.cc
in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Modified: branches/bleeding_edge/tools/visual_studio/v8_base.vcproj
==============================================================================
--- branches/bleeding_edge/tools/visual_studio/v8_base.vcproj (original)
+++ branches/bleeding_edge/tools/visual_studio/v8_base.vcproj Thu Mar 5
03:35:44 2009
@@ -589,6 +589,14 @@
>
</File>
<File
+ RelativePath="..\..\src\oprofile-agent.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\..\src\oprofile-agent.h"
+ >
+ </File>
+ <File
RelativePath="..\..\src\parser.cc"
>
</File>
--~--~---------~--~----~------------~-------~--~----~
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
-~----------~----~----~----~------~----~------~--~---