Chromium Code Reviews| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
| 7 import("//build/config/arm.gni") | 7 import("//build/config/arm.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/linux/pkg_config.gni") | 9 import("//build/config/linux/pkg_config.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 155 "filters/h264_bit_reader.cc", | 155 "filters/h264_bit_reader.cc", |
| 156 "filters/h264_bit_reader.h", | 156 "filters/h264_bit_reader.h", |
| 157 "filters/h264_parser.cc", | 157 "filters/h264_parser.cc", |
| 158 "filters/h264_parser.h", | 158 "filters/h264_parser.h", |
| 159 "filters/ivf_parser.cc", | 159 "filters/ivf_parser.cc", |
| 160 "filters/ivf_parser.h", | 160 "filters/ivf_parser.h", |
| 161 "filters/jpeg_parser.cc", | 161 "filters/jpeg_parser.cc", |
| 162 "filters/jpeg_parser.h", | 162 "filters/jpeg_parser.h", |
| 163 "filters/memory_data_source.cc", | 163 "filters/memory_data_source.cc", |
| 164 "filters/memory_data_source.h", | 164 "filters/memory_data_source.h", |
| 165 "filters/opus_audio_decoder.cc", | |
| 166 "filters/opus_audio_decoder.h", | |
| 167 "filters/opus_constants.cc", | 165 "filters/opus_constants.cc", |
| 168 "filters/opus_constants.h", | 166 "filters/opus_constants.h", |
| 169 "filters/pipeline_controller.cc", | 167 "filters/pipeline_controller.cc", |
| 170 "filters/pipeline_controller.h", | 168 "filters/pipeline_controller.h", |
| 171 "filters/source_buffer_range.cc", | 169 "filters/source_buffer_range.cc", |
| 172 "filters/source_buffer_range.h", | 170 "filters/source_buffer_range.h", |
| 173 "filters/source_buffer_state.cc", | 171 "filters/source_buffer_state.cc", |
| 174 "filters/source_buffer_state.h", | 172 "filters/source_buffer_state.h", |
| 175 "filters/source_buffer_stream.cc", | 173 "filters/source_buffer_stream.cc", |
| 176 "filters/source_buffer_stream.h", | 174 "filters/source_buffer_stream.h", |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 479 "device_monitors/device_monitor_udev.cc", | 477 "device_monitors/device_monitor_udev.cc", |
| 480 "device_monitors/device_monitor_udev.h", | 478 "device_monitors/device_monitor_udev.h", |
| 481 ] | 479 ] |
| 482 } | 480 } |
| 483 | 481 |
| 484 public_deps += [ | 482 public_deps += [ |
| 485 ":media_features", | 483 ":media_features", |
| 486 ":shared_memory_support", | 484 ":shared_memory_support", |
| 487 "//media/audio", | 485 "//media/audio", |
| 488 "//media/base", | 486 "//media/base", |
| 489 "//third_party/opus", | 487 "//third_party/opus", |
|
wolenetz
2016/11/18 00:36:41
Should this now be conditioned on media_use_ffmpeg
DaleCurtis
2016/11/18 00:51:27
Probably, I don't know why it's a public dep eithe
| |
| 490 ] | 488 ] |
| 491 | 489 |
| 492 deps += [ | 490 deps += [ |
| 493 "//base", | 491 "//base", |
| 494 "//base:i18n", | 492 "//base:i18n", |
| 495 "//base/third_party/dynamic_annotations", | 493 "//base/third_party/dynamic_annotations", |
| 496 "//crypto", | 494 "//crypto", |
| 497 "//crypto:platform", | 495 "//crypto:platform", |
| 498 "//gpu/command_buffer/client:gles2_interface", | 496 "//gpu/command_buffer/client:gles2_interface", |
| 499 "//gpu/command_buffer/common", | 497 "//gpu/command_buffer/common", |
| (...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 929 fuzzer_test("media_mp4_avcc_parser_fuzzer") { | 927 fuzzer_test("media_mp4_avcc_parser_fuzzer") { |
| 930 sources = [ | 928 sources = [ |
| 931 "formats/mp4/mp4_avcc_parser_fuzzer.cc", | 929 "formats/mp4/mp4_avcc_parser_fuzzer.cc", |
| 932 ] | 930 ] |
| 933 deps = [ | 931 deps = [ |
| 934 ":media", | 932 ":media", |
| 935 "//base", | 933 "//base", |
| 936 ] | 934 ] |
| 937 } | 935 } |
| 938 } | 936 } |
| OLD | NEW |