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

Side by Side Diff: gpu/khronos_glcts_support/khronos_glcts_test.cc

Issue 647623002: Cleanup: Actually remove base/file_util.h. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 unified diff | Download patch
« no previous file with comments | « base/file_util.h ('k') | tools/gn/command_format.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "gpu/khronos_glcts_support/khronos_glcts_test.h" 5 #include "gpu/khronos_glcts_support/khronos_glcts_test.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/at_exit.h" 9 #include "base/at_exit.h"
10 #include "base/base_paths.h" 10 #include "base/base_paths.h"
11 #include "base/command_line.h" 11 #include "base/command_line.h"
12 #include "base/file_util.h"
13 #include "base/files/file_path.h" 12 #include "base/files/file_path.h"
13 #include "base/files/file_util.h"
14 #include "base/logging.h" 14 #include "base/logging.h"
15 #include "base/path_service.h" 15 #include "base/path_service.h"
16 #include "base/process/launch.h" 16 #include "base/process/launch.h"
17 #include "base/strings/string_util.h" 17 #include "base/strings/string_util.h"
18 #include "gpu/config/gpu_test_config.h" 18 #include "gpu/config/gpu_test_config.h"
19 #include "gpu/config/gpu_test_expectations_parser.h" 19 #include "gpu/config/gpu_test_expectations_parser.h"
20 #include "testing/gtest/include/gtest/gtest.h" 20 #include "testing/gtest/include/gtest/gtest.h"
21 21
22 base::FilePath g_deqp_log_dir; 22 base::FilePath g_deqp_log_dir;
23 23
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 if (argc == 2) { 95 if (argc == 2) {
96 g_deqp_log_dir = base::FilePath::FromUTF8Unsafe(argv[1]); 96 g_deqp_log_dir = base::FilePath::FromUTF8Unsafe(argv[1]);
97 } 97 }
98 else { 98 else {
99 base::GetTempDir(&g_deqp_log_dir); 99 base::GetTempDir(&g_deqp_log_dir);
100 } 100 }
101 101
102 return RUN_ALL_TESTS(); 102 return RUN_ALL_TESTS();
103 } 103 }
104 104
OLDNEW
« no previous file with comments | « base/file_util.h ('k') | tools/gn/command_format.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698