summaryrefslogtreecommitdiffstats
path: root/media/base/mac/BUILD.gn
blob: c1ebc9e64e7117a8d1b4e1b7a7e3c960481362f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

assert(is_mac || is_ios)

source_set("mac") {
  set_sources_assignment_filter([])
  sources = [
    "coremedia_glue.h",
    "coremedia_glue.mm",
    "corevideo_glue.h",
    "video_frame_mac.cc",
    "video_frame_mac.h",
    "videotoolbox_glue.h",
    "videotoolbox_glue.mm",
  ]
  if (is_mac) {
    sources += [
      "avfoundation_glue.h",
      "avfoundation_glue.mm",
    ]
    libs = [
      # Required by video_frame_mac.cc.
      "CoreVideo.framework",
    ]
  }
  set_sources_assignment_filter(sources_assignment_filter)
  configs += [ "//media:media_config" ]
}

source_set("unittests") {
  testonly = true
  sources = [
    "video_frame_mac_unittests.cc",
  ]
  configs += [ "//media:media_config" ]
  deps = [
    "//testing/gtest",
  ]
}