| 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/linux/pkg_config.gni") | 8 import("//build/config/linux/pkg_config.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| (...skipping 664 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 675 | 675 |
| 676 if (is_mac || is_ios) { | 676 if (is_mac || is_ios) { |
| 677 deps += [ "//media/base/mac" ] | 677 deps += [ "//media/base/mac" ] |
| 678 } | 678 } |
| 679 | 679 |
| 680 if (is_mac) { | 680 if (is_mac) { |
| 681 sources += [ | 681 sources += [ |
| 682 "midi/midi_manager_mac_unittest.cc", | 682 "midi/midi_manager_mac_unittest.cc", |
| 683 "video/capture/mac/video_capture_device_factory_mac_unittest.mm", | 683 "video/capture/mac/video_capture_device_factory_mac_unittest.mm", |
| 684 ] | 684 ] |
| 685 libs = [ |
| 686 # Required by midi_manager_mac_unittest.cc. |
| 687 "CoreMIDI.framework", |
| 688 ] |
| 685 } | 689 } |
| 686 | 690 |
| 687 if (use_alsa) { | 691 if (use_alsa) { |
| 688 sources += [ "midi/midi_manager_alsa_unittest.cc" ] | 692 sources += [ "midi/midi_manager_alsa_unittest.cc" ] |
| 689 } | 693 } |
| 690 | 694 |
| 691 # include_dirs += [ | 695 # include_dirs += [ |
| 692 # # Needed by media_drm_bridge.cc. | 696 # # Needed by media_drm_bridge.cc. |
| 693 # target_gen_dir, | 697 # target_gen_dir, |
| 694 # ], | 698 # ], |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 816 ":media", | 820 ":media", |
| 817 ":shared_memory_support", | 821 ":shared_memory_support", |
| 818 "//base", | 822 "//base", |
| 819 "//tools/xdisplaycheck", | 823 "//tools/xdisplaycheck", |
| 820 "//ui/gl", | 824 "//ui/gl", |
| 821 "//ui/gfx", | 825 "//ui/gfx", |
| 822 "//ui/gfx/geometry", | 826 "//ui/gfx/geometry", |
| 823 ] | 827 ] |
| 824 } | 828 } |
| 825 } | 829 } |
| OLD | NEW |