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") |
11 import("//testing/libfuzzer/fuzzer_test.gni") | 11 import("//testing/libfuzzer/fuzzer_test.gni") |
12 | 12 |
13 source_set("base") { | 13 source_set("base") { |
14 # This is part of the media component. | 14 # This is part of the media component. |
15 visibility = [ | 15 visibility = [ "//media/*" ] |
16 ":*", | |
17 "//media", | |
18 "//media/capture", | |
19 ] | |
20 sources = [ | 16 sources = [ |
21 "audio_block_fifo.cc", | 17 "audio_block_fifo.cc", |
22 "audio_block_fifo.h", | 18 "audio_block_fifo.h", |
23 "audio_buffer.cc", | 19 "audio_buffer.cc", |
24 "audio_buffer.h", | 20 "audio_buffer.h", |
25 "audio_buffer_converter.cc", | 21 "audio_buffer_converter.cc", |
26 "audio_buffer_converter.h", | 22 "audio_buffer_converter.h", |
27 "audio_buffer_queue.cc", | 23 "audio_buffer_queue.cc", |
28 "audio_buffer_queue.h", | 24 "audio_buffer_queue.h", |
29 "audio_capturer_source.h", | 25 "audio_capturer_source.h", |
(...skipping 567 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
597 | 593 |
598 fuzzer_test("media_container_names_fuzzer") { | 594 fuzzer_test("media_container_names_fuzzer") { |
599 sources = [ | 595 sources = [ |
600 "container_names_fuzzertest.cc", | 596 "container_names_fuzzertest.cc", |
601 ] | 597 ] |
602 deps = [ | 598 deps = [ |
603 "//base", | 599 "//base", |
604 "//media", | 600 "//media", |
605 ] | 601 ] |
606 } | 602 } |
OLD | NEW |