OLD | NEW |
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 import("//build/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
6 import("//build/config/arm.gni") | 6 import("//build/config/arm.gni") |
7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
8 import("//build/config/linux/pkg_config.gni") | 8 import("//build/config/linux/pkg_config.gni") |
9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
247 deps += [ "//third_party/ffmpeg" ] | 247 deps += [ "//third_party/ffmpeg" ] |
248 sources += [ | 248 sources += [ |
249 "ffmpeg/ffmpeg_common.cc", | 249 "ffmpeg/ffmpeg_common.cc", |
250 "ffmpeg/ffmpeg_common.h", | 250 "ffmpeg/ffmpeg_common.h", |
251 "filters/audio_file_reader.cc", | 251 "filters/audio_file_reader.cc", |
252 "filters/audio_file_reader.h", | 252 "filters/audio_file_reader.h", |
253 "filters/blocking_url_protocol.cc", | 253 "filters/blocking_url_protocol.cc", |
254 "filters/blocking_url_protocol.h", | 254 "filters/blocking_url_protocol.h", |
255 "filters/ffmpeg_audio_decoder.cc", | 255 "filters/ffmpeg_audio_decoder.cc", |
256 "filters/ffmpeg_audio_decoder.h", | 256 "filters/ffmpeg_audio_decoder.h", |
| 257 "filters/ffmpeg_bitstream_converter.h", |
257 "filters/ffmpeg_demuxer.cc", | 258 "filters/ffmpeg_demuxer.cc", |
258 "filters/ffmpeg_demuxer.h", | 259 "filters/ffmpeg_demuxer.h", |
259 "filters/ffmpeg_glue.cc", | 260 "filters/ffmpeg_glue.cc", |
260 "filters/ffmpeg_glue.h", | 261 "filters/ffmpeg_glue.h", |
261 "filters/ffmpeg_video_decoder.cc", | 262 "filters/ffmpeg_video_decoder.cc", |
262 "filters/ffmpeg_video_decoder.h", | 263 "filters/ffmpeg_video_decoder.h", |
263 "filters/in_memory_url_protocol.cc", | 264 "filters/in_memory_url_protocol.cc", |
264 "filters/in_memory_url_protocol.h", | 265 "filters/in_memory_url_protocol.h", |
265 ] | 266 ] |
266 if (proprietary_codecs) { | 267 if (proprietary_codecs) { |
267 sources += [ | 268 sources += [ |
| 269 "filters/ffmpeg_aac_bitstream_converter.cc", |
| 270 "filters/ffmpeg_aac_bitstream_converter.h", |
268 "filters/ffmpeg_h264_to_annex_b_bitstream_converter.cc", | 271 "filters/ffmpeg_h264_to_annex_b_bitstream_converter.cc", |
269 "filters/ffmpeg_h264_to_annex_b_bitstream_converter.h", | 272 "filters/ffmpeg_h264_to_annex_b_bitstream_converter.h", |
270 ] | 273 ] |
271 } | 274 } |
272 } | 275 } |
273 | 276 |
274 if (cpu_arch == "arm" && arm_use_neon) { | 277 if (cpu_arch == "arm" && arm_use_neon) { |
275 defines += [ "USE_NEON" ] | 278 defines += [ "USE_NEON" ] |
276 } | 279 } |
277 | 280 |
(...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
766 deps = [ | 769 deps = [ |
767 ":media", | 770 ":media", |
768 ":shared_memory_support", | 771 ":shared_memory_support", |
769 "//base", | 772 "//base", |
770 "//ui/gl", | 773 "//ui/gl", |
771 "//ui/gfx", | 774 "//ui/gfx", |
772 "//ui/gfx/geometry", | 775 "//ui/gfx/geometry", |
773 ] | 776 ] |
774 } | 777 } |
775 } | 778 } |
OLD | NEW |