| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/test/nacl/nacl_browsertest_util.h" | 5 #include "chrome/test/nacl/nacl_browsertest_util.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/json/json_reader.h" | 8 #include "base/json/json_reader.h" |
| 9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
| 10 #include "base/values.h" | 10 #include "base/values.h" |
| (...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 return test_server_->Start(); | 237 return test_server_->Start(); |
| 238 } | 238 } |
| 239 | 239 |
| 240 FilePath::StringType NaClBrowserTestNewlib::Variant() { | 240 FilePath::StringType NaClBrowserTestNewlib::Variant() { |
| 241 return FILE_PATH_LITERAL("newlib"); | 241 return FILE_PATH_LITERAL("newlib"); |
| 242 } | 242 } |
| 243 | 243 |
| 244 FilePath::StringType NaClBrowserTestGLibc::Variant() { | 244 FilePath::StringType NaClBrowserTestGLibc::Variant() { |
| 245 return FILE_PATH_LITERAL("glibc"); | 245 return FILE_PATH_LITERAL("glibc"); |
| 246 } | 246 } |
| 247 | |
| 248 FilePath::StringType NaClBrowserTestPnaclNexe::Variant() { | |
| 249 return FILE_PATH_LITERAL("pnacl"); | |
| 250 } | |
| OLD | NEW |