mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
53 lines
1.3 KiB
Plaintext
53 lines
1.3 KiB
Plaintext
# 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.
|
|
|
|
import("//build/config/jumbo.gni")
|
|
|
|
assert(is_mac || is_ios)
|
|
|
|
jumbo_source_set("mac") {
|
|
# Note: This source_set is depended on only by //media. In the component
|
|
# build, if other component targets also depend on it, multiple copies of
|
|
# the ObjC classes declared in the files below will cause warnings at
|
|
# run-time.
|
|
visibility = [ "//media" ]
|
|
|
|
set_sources_assignment_filter([])
|
|
sources = [
|
|
"video_frame_mac.cc",
|
|
"video_frame_mac.h",
|
|
"videotoolbox_helpers.cc",
|
|
"videotoolbox_helpers.h",
|
|
]
|
|
if (is_mac) {
|
|
libs = [
|
|
"AVFoundation.framework",
|
|
"CoreMedia.framework",
|
|
"CoreVideo.framework", # Required by video_frame_mac.cc.
|
|
"VideoToolbox.framework",
|
|
]
|
|
}
|
|
set_sources_assignment_filter(sources_assignment_filter)
|
|
configs += [ "//media:subcomponent_config" ]
|
|
|
|
deps = [
|
|
"//media/base",
|
|
"//ui/gfx:color_space",
|
|
]
|
|
}
|
|
|
|
source_set("unit_tests") {
|
|
testonly = true
|
|
sources = [
|
|
"video_frame_mac_unittests.cc",
|
|
]
|
|
libs = [ "CoreVideo.framework" ]
|
|
configs += [ "//media:media_config" ]
|
|
deps = [
|
|
"//media:test_support",
|
|
"//testing/gtest",
|
|
"//ui/gfx:color_space",
|
|
]
|
|
}
|