Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(514)

Side by Side Diff: media/BUILD.gn

Issue 1961473003: [Mac/GN] Set up the component build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 = [
Nico 2016/05/10 20:24:06 this is no longer needed? ...nvm, the next file e
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
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 }
OLDNEW
« content/shell/BUILD.gn ('K') | « gpu/ipc/service/BUILD.gn ('k') | media/base/mac/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698