Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(361)

Unified Diff: visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/PropertyManager.cs

Issue 10915292: Use irt from within chrome install (Closed) Base URL: http://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/PropertyManager.cs
diff --git a/visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/PropertyManager.cs b/visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/PropertyManager.cs
index 4268f5b16073a4760f14a8e4d73e8b8b4cf5ce23..e43de21af248e074837f1eb61d8022262de95b38 100644
--- a/visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/PropertyManager.cs
+++ b/visual_studio/NativeClientVSAddIn/NativeClientVSAddIn/PropertyManager.cs
@@ -169,6 +169,22 @@ namespace NativeClientVSAddIn
}
/// <summary>
+ /// Gets or sets the command to debug (assumed to be chrome.exe)
+ /// </summary>
+ public string LocalDebuggerCommand
+ {
+ get
+ {
+ AssertValidPlatform();
+ return GetProperty("WindowsLocalDebugger", "LocalDebuggerCommand");
+ }
+
+ protected set
+ {
+ }
+ }
+
+ /// <summary>
/// Gets or sets the toolchain name. Ex: newlib.
/// </summary>
public string ToolchainName
@@ -185,14 +201,14 @@ namespace NativeClientVSAddIn
}
/// <summary>
- /// Gets or sets the path to the NaCl IRT to use during debugging. (NaCl platform only).
+ /// Gets or sets the target archirecture name. Ex: x86_64.
/// </summary>
- public string IrtPath
+ public string TargetArchitecture
{
get
{
AssertNaCl();
- return GetProperty("ConfigurationGeneral", "NaClIrtPath");
+ return GetProperty("ConfigurationGeneral", "TargetArchitecture");
}
protected set

Powered by Google App Engine
This is Rietveld 408576698