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