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/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//build/config/linux/pkg_config.gni") | 8 import("//build/config/linux/pkg_config.gni") |
9 import("//media/media_options.gni") | 9 import("//media/media_options.gni") |
10 | 10 |
(...skipping 630 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
641 "base/audio_bus.cc", | 641 "base/audio_bus.cc", |
642 "base/audio_bus.h", | 642 "base/audio_bus.h", |
643 "base/channel_layout.cc", | 643 "base/channel_layout.cc", |
644 "base/channel_layout.h", | 644 "base/channel_layout.h", |
645 "base/limits.h", | 645 "base/limits.h", |
646 "base/media_export.h", | 646 "base/media_export.h", |
647 "base/vector_math.cc", | 647 "base/vector_math.cc", |
648 "base/vector_math.h", | 648 "base/vector_math.h", |
649 ] | 649 ] |
650 configs += [ ":media_config" ] | 650 configs += [ ":media_config" ] |
| 651 defines = [ "MEDIA_IMPLEMENTATION" ] |
651 deps = [ "//base" ] | 652 deps = [ "//base" ] |
652 } | 653 } |
653 | 654 |
654 if (media_use_ffmpeg) { | 655 if (media_use_ffmpeg) { |
655 test("ffmpeg_unittests") { | 656 test("ffmpeg_unittests") { |
656 sources = [ "ffmpeg/ffmpeg_unittest.cc" ] | 657 sources = [ "ffmpeg/ffmpeg_unittest.cc" ] |
657 | 658 |
658 deps = [ | 659 deps = [ |
659 ":media", | 660 ":media", |
660 ":test_support", | 661 ":test_support", |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
720 deps = [ | 721 deps = [ |
721 ":media", | 722 ":media", |
722 ":shared_memory_support", | 723 ":shared_memory_support", |
723 "//base", | 724 "//base", |
724 "//ui/gl", | 725 "//ui/gl", |
725 "//ui/gfx", | 726 "//ui/gfx", |
726 "//ui/gfx/geometry", | 727 "//ui/gfx/geometry", |
727 ] | 728 ] |
728 } | 729 } |
729 } | 730 } |
OLD | NEW |