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

Unified Diff: chrome/test/nacl/nacl_browsertest_util.cc

Issue 1005173006: Add a switch for using PNaCl Subzero and use it for -O0 translation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: stuff Created 5 years, 9 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: chrome/test/nacl/nacl_browsertest_util.cc
diff --git a/chrome/test/nacl/nacl_browsertest_util.cc b/chrome/test/nacl/nacl_browsertest_util.cc
index f1e0f805a5ff0c3fa597c3e8e60b2d0c154efec9..996efe26b4a0ffbdf8a1770f81f669b1c2a180d1 100644
--- a/chrome/test/nacl/nacl_browsertest_util.cc
+++ b/chrome/test/nacl/nacl_browsertest_util.cc
@@ -283,6 +283,12 @@ bool NaClBrowserTestPnacl::IsAPnaclTest() {
return true;
}
+void NaClBrowserTestPnaclSubzero::SetUpCommandLine(
+ base::CommandLine* command_line) {
+ NaClBrowserTestPnacl::SetUpCommandLine(command_line);
+ command_line->AppendSwitch(switches::kEnablePNaClSubzero);
+}
+
base::FilePath::StringType NaClBrowserTestNonSfiMode::Variant() {
return FILE_PATH_LITERAL("libc-free");
}

Powered by Google App Engine
This is Rietveld 408576698