| 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/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build/config/linux/pkg_config.gni") | 9 import("//build/config/linux/pkg_config.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 "demuxer.h", | 122 "demuxer.h", |
| 123 "demuxer_stream.cc", | 123 "demuxer_stream.cc", |
| 124 "demuxer_stream.h", | 124 "demuxer_stream.h", |
| 125 "demuxer_stream_provider.cc", | 125 "demuxer_stream_provider.cc", |
| 126 "demuxer_stream_provider.h", | 126 "demuxer_stream_provider.h", |
| 127 "djb2.cc", | 127 "djb2.cc", |
| 128 "djb2.h", | 128 "djb2.h", |
| 129 "eme_constants.h", | 129 "eme_constants.h", |
| 130 "encryption_scheme.cc", | 130 "encryption_scheme.cc", |
| 131 "encryption_scheme.h", | 131 "encryption_scheme.h", |
| 132 "feedback_signal_accumulator.h", |
| 132 "key_system_names.cc", | 133 "key_system_names.cc", |
| 133 "key_system_names.h", | 134 "key_system_names.h", |
| 134 "key_system_properties.cc", | 135 "key_system_properties.cc", |
| 135 "key_system_properties.h", | 136 "key_system_properties.h", |
| 136 "key_systems.cc", | 137 "key_systems.cc", |
| 137 "key_systems.h", | 138 "key_systems.h", |
| 138 "loopback_audio_converter.cc", | 139 "loopback_audio_converter.cc", |
| 139 "loopback_audio_converter.h", | 140 "loopback_audio_converter.h", |
| 140 "media.cc", | 141 "media.cc", |
| 141 "media.h", | 142 "media.h", |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 396 configs += [ "//media:media_config" ] | 397 configs += [ "//media:media_config" ] |
| 397 deps = [ | 398 deps = [ |
| 398 "//base", | 399 "//base", |
| 399 "//base/test:test_support", | 400 "//base/test:test_support", |
| 400 "//media", | 401 "//media", |
| 401 "//media:media_features", | 402 "//media:media_features", |
| 402 "//media:shared_memory_support", | 403 "//media:shared_memory_support", |
| 403 "//testing/gmock", | 404 "//testing/gmock", |
| 404 "//ui/gfx:test_support", | 405 "//ui/gfx:test_support", |
| 405 ] | 406 ] |
| 406 if (is_android) { | |
| 407 deps += [ | |
| 408 # Needed to register capture Java/Jni objects. TODO(mcasas): Remove when | |
| 409 # the dependency to capture is not needed, see https://crbug.com/618718. | |
| 410 "//media/capture", | |
| 411 "//media/capture/video/android", | |
| 412 ] | |
| 413 } | |
| 414 } | 407 } |
| 415 | 408 |
| 416 source_set("unittests") { | 409 source_set("unittests") { |
| 417 testonly = true | 410 testonly = true |
| 418 sources = [ | 411 sources = [ |
| 419 "audio_block_fifo_unittest.cc", | 412 "audio_block_fifo_unittest.cc", |
| 420 "audio_buffer_converter_unittest.cc", | 413 "audio_buffer_converter_unittest.cc", |
| 421 "audio_buffer_queue_unittest.cc", | 414 "audio_buffer_queue_unittest.cc", |
| 422 "audio_buffer_unittest.cc", | 415 "audio_buffer_unittest.cc", |
| 423 "audio_bus_unittest.cc", | 416 "audio_bus_unittest.cc", |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 610 | 603 |
| 611 fuzzer_test("media_container_names_fuzzer") { | 604 fuzzer_test("media_container_names_fuzzer") { |
| 612 sources = [ | 605 sources = [ |
| 613 "container_names_fuzzertest.cc", | 606 "container_names_fuzzertest.cc", |
| 614 ] | 607 ] |
| 615 deps = [ | 608 deps = [ |
| 616 "//base", | 609 "//base", |
| 617 "//media", | 610 "//media", |
| 618 ] | 611 ] |
| 619 } | 612 } |
| OLD | NEW |