| 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 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 397 configs += [ "//media:media_config" ] | 397 configs += [ "//media:media_config" ] |
| 398 deps = [ | 398 deps = [ |
| 399 "//base", | 399 "//base", |
| 400 "//base/test:test_support", | 400 "//base/test:test_support", |
| 401 "//media", | 401 "//media", |
| 402 "//media:media_features", | 402 "//media:media_features", |
| 403 "//media:shared_memory_support", | 403 "//media:shared_memory_support", |
| 404 "//testing/gmock", | 404 "//testing/gmock", |
| 405 "//ui/gfx:test_support", | 405 "//ui/gfx:test_support", |
| 406 ] | 406 ] |
| 407 if (is_android) { | |
| 408 deps += [ | |
| 409 # Needed to register capture Java/Jni objects. TODO(mcasas): Remove when | |
| 410 # the dependency to capture is not needed, see https://crbug.com/618718. | |
| 411 "//media/capture", | |
| 412 "//media/capture/video/android", | |
| 413 ] | |
| 414 } | |
| 415 } | 407 } |
| 416 | 408 |
| 417 source_set("unittests") { | 409 source_set("unittests") { |
| 418 testonly = true | 410 testonly = true |
| 419 sources = [ | 411 sources = [ |
| 420 "audio_block_fifo_unittest.cc", | 412 "audio_block_fifo_unittest.cc", |
| 421 "audio_buffer_converter_unittest.cc", | 413 "audio_buffer_converter_unittest.cc", |
| 422 "audio_buffer_queue_unittest.cc", | 414 "audio_buffer_queue_unittest.cc", |
| 423 "audio_buffer_unittest.cc", | 415 "audio_buffer_unittest.cc", |
| 424 "audio_bus_unittest.cc", | 416 "audio_bus_unittest.cc", |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 612 | 604 |
| 613 fuzzer_test("media_container_names_fuzzer") { | 605 fuzzer_test("media_container_names_fuzzer") { |
| 614 sources = [ | 606 sources = [ |
| 615 "container_names_fuzzertest.cc", | 607 "container_names_fuzzertest.cc", |
| 616 ] | 608 ] |
| 617 deps = [ | 609 deps = [ |
| 618 "//base", | 610 "//base", |
| 619 "//media", | 611 "//media", |
| 620 ] | 612 ] |
| 621 } | 613 } |
| OLD | NEW |