| Index: media/filters/ffmpeg_demuxer_unittest.cc
 | 
| diff --git a/media/filters/ffmpeg_demuxer_unittest.cc b/media/filters/ffmpeg_demuxer_unittest.cc
 | 
| index e5a7c2d17240dcb5b0a91a626905b6f25bade4cb..d6a2bffbb093f3983b9a22fd12aa46ee598185c9 100644
 | 
| --- a/media/filters/ffmpeg_demuxer_unittest.cc
 | 
| +++ b/media/filters/ffmpeg_demuxer_unittest.cc
 | 
| @@ -1036,7 +1036,7 @@
 | 
|    base::RunLoop().Run();
 | 
|  }
 | 
|  
 | 
| -#if BUILDFLAG(USE_PROPRIETARY_CODECS)
 | 
| +#if defined(USE_PROPRIETARY_CODECS)
 | 
|  // Ensure ID3v1 tag reading is disabled.  id3_test.mp3 has an ID3v1 tag with the
 | 
|  // field "title" set to "sample for id3 test".
 | 
|  TEST_F(FFmpegDemuxerTest, NoID3TagData) {
 | 
| @@ -1046,7 +1046,7 @@
 | 
|  }
 | 
|  #endif
 | 
|  
 | 
| -#if BUILDFLAG(USE_PROPRIETARY_CODECS)
 | 
| +#if defined(USE_PROPRIETARY_CODECS)
 | 
|  // Ensure MP3 files with large image/video based ID3 tags demux okay.  FFmpeg
 | 
|  // will hand us a video stream to the data which will likely be in a format we
 | 
|  // don't accept as video; e.g. PNG.
 | 
| @@ -1082,7 +1082,7 @@
 | 
|    EXPECT_TRUE(demuxer_->GetStream(DemuxerStream::AUDIO));
 | 
|  }
 | 
|  
 | 
| -#if BUILDFLAG(USE_PROPRIETARY_CODECS)
 | 
| +#if defined(USE_PROPRIETARY_CODECS)
 | 
|  // FFmpeg returns null data pointers when samples have zero size, leading to
 | 
|  // mistakenly creating end of stream buffers http://crbug.com/169133
 | 
|  TEST_F(FFmpegDemuxerTest, MP4_ZeroStszEntry) {
 | 
| @@ -1362,7 +1362,7 @@
 | 
|    InitializeDemuxer();
 | 
|  }
 | 
|  
 | 
| -#endif  // BUILDFLAG(USE_PROPRIETARY_CODECS)
 | 
| +#endif  // defined(USE_PROPRIETARY_CODECS)
 | 
|  
 | 
|  TEST_F(FFmpegDemuxerTest, Read_Webm_Multiple_Tracks) {
 | 
|    CreateDemuxer("multitrack-3video-2audio.webm");
 | 
| 
 |