| 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 785 "//media/base:test_support", | 789 "//media/base:test_support", |
| 786 "//media/test:pipeline_integration_tests", | 790 "//media/test:pipeline_integration_tests", |
| 787 "//testing/gmock", | 791 "//testing/gmock", |
| 788 "//testing/gtest", | 792 "//testing/gtest", |
| 789 "//third_party/ffmpeg", | 793 "//third_party/ffmpeg", |
| 790 "//ui/gfx/geometry", | 794 "//ui/gfx/geometry", |
| 791 "//ui/gfx:test_support", | 795 "//ui/gfx:test_support", |
| 792 ] | 796 ] |
| 793 } | 797 } |
| 794 } | 798 } |
| OLD | NEW |