| Index: webrtc/test/testsupport/test_output_unittest.cc
 | 
| diff --git a/webrtc/test/testsupport/test_output_unittest.cc b/webrtc/test/testsupport/test_output_unittest.cc
 | 
| index 511ce6f750f2107e9f99755af8b60096eb0cef5e..3d489fe53b539f054a97fba7d8b20bfa875782f7 100644
 | 
| --- a/webrtc/test/testsupport/test_output_unittest.cc
 | 
| +++ b/webrtc/test/testsupport/test_output_unittest.cc
 | 
| @@ -14,7 +14,7 @@
 | 
|  
 | 
|  #include <string>
 | 
|  
 | 
| -#include "gflags/gflags.h"
 | 
| +#include "webrtc/rtc_base/flags.h"
 | 
|  #include "webrtc/rtc_base/file.h"
 | 
|  #include "webrtc/rtc_base/pathutils.h"
 | 
|  #include "webrtc/rtc_base/platform_file.h"
 | 
| @@ -26,10 +26,10 @@ namespace webrtc {
 | 
|  namespace test {
 | 
|  
 | 
|  TEST(IsolatedOutputTest, ShouldRejectInvalidIsolatedOutDir) {
 | 
| -  std::string backup = FLAGS_test_output_dir;
 | 
| -  FLAGS_test_output_dir = "";
 | 
| +  const char* backup = FLAG_test_output_dir;
 | 
| +  FLAG_test_output_dir = "";
 | 
|    ASSERT_FALSE(WriteToTestOutput("a-file", "some-contents"));
 | 
| -  FLAGS_test_output_dir = backup;
 | 
| +  FLAG_test_output_dir = backup;
 | 
|  }
 | 
|  
 | 
|  TEST(IsolatedOutputTest, ShouldRejectInvalidFileName) {
 | 
| @@ -42,7 +42,7 @@ TEST(IsolatedOutputTest, ShouldBeAbleToWriteContent) {
 | 
|    const char* filename = "a-file";
 | 
|    const char* content = "some-contents";
 | 
|    if (WriteToTestOutput(filename, content)) {
 | 
| -    rtc::Pathname out_file(FLAGS_test_output_dir, filename);
 | 
| +    rtc::Pathname out_file(FLAG_test_output_dir, filename);
 | 
|      rtc::File input = rtc::File::Open(out_file);
 | 
|      EXPECT_TRUE(input.IsOpen());
 | 
|      EXPECT_TRUE(input.Seek(0));
 | 
| 
 |