| 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 653 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 664 "filters/ffmpeg_aac_bitstream_converter_unittest.cc", | 664 "filters/ffmpeg_aac_bitstream_converter_unittest.cc", |
| 665 "filters/ffmpeg_h264_to_annex_b_bitstream_converter_unittest.cc", | 665 "filters/ffmpeg_h264_to_annex_b_bitstream_converter_unittest.cc", |
| 666 ] | 666 ] |
| 667 } | 667 } |
| 668 if (enable_hevc_demuxing) { | 668 if (enable_hevc_demuxing) { |
| 669 sources += [ "filters/h265_parser_unittest.cc" ] | 669 sources += [ "filters/h265_parser_unittest.cc" ] |
| 670 } | 670 } |
| 671 } | 671 } |
| 672 | 672 |
| 673 if (is_mac || is_ios) { | 673 if (is_mac || is_ios) { |
| 674 deps += [ "//media/base/mac" ] | 674 libs = [ |
| 675 "AppKit.framework", |
| 676 "Foundation.framework", |
| 677 ] |
| 675 } | 678 } |
| 676 | 679 |
| 677 # include_dirs += [ | 680 # include_dirs += [ |
| 678 # # Needed by media_drm_bridge.cc. | 681 # # Needed by media_drm_bridge.cc. |
| 679 # target_gen_dir, | 682 # target_gen_dir, |
| 680 # ], | 683 # ], |
| 681 | 684 |
| 682 configs += [ ":media_config" ] | 685 configs += [ ":media_config" ] |
| 683 | 686 |
| 684 if (media_use_ffmpeg) { | 687 if (media_use_ffmpeg) { |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 836 fuzzer_test("media_vp9_parser_fuzzer") { | 839 fuzzer_test("media_vp9_parser_fuzzer") { |
| 837 sources = [ | 840 sources = [ |
| 838 "filters/vp9_parser_fuzzertest.cc", | 841 "filters/vp9_parser_fuzzertest.cc", |
| 839 ] | 842 ] |
| 840 deps = [ | 843 deps = [ |
| 841 ":media", | 844 ":media", |
| 842 "//base", | 845 "//base", |
| 843 ] | 846 ] |
| 844 libfuzzer_options = [ "max_len = 400000" ] | 847 libfuzzer_options = [ "max_len = 400000" ] |
| 845 } | 848 } |
| OLD | NEW |