mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
63 lines
1.4 KiB
Plaintext
63 lines
1.4 KiB
Plaintext
# Copyright 2016 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.
|
|
|
|
source_set("common") {
|
|
sources = [
|
|
"media_type_converters.cc",
|
|
"media_type_converters.h",
|
|
"mojo_data_pipe_read_write.cc",
|
|
"mojo_data_pipe_read_write.h",
|
|
"mojo_decoder_buffer_converter.cc",
|
|
"mojo_decoder_buffer_converter.h",
|
|
]
|
|
|
|
deps = [
|
|
":mojo_shared_buffer_video_frame",
|
|
"//base",
|
|
"//gpu/ipc/common:struct_traits",
|
|
"//media",
|
|
"//media/mojo/interfaces",
|
|
"//mojo/public/cpp/bindings",
|
|
"//mojo/public/cpp/system",
|
|
"//ui/gfx/geometry",
|
|
"//ui/gfx/geometry/mojo",
|
|
]
|
|
}
|
|
|
|
# This is a separate target so that //media/mojo/interfaces can depend on it
|
|
# without creating a cycle.
|
|
source_set("mojo_shared_buffer_video_frame") {
|
|
sources = [
|
|
"mojo_shared_buffer_video_frame.cc",
|
|
"mojo_shared_buffer_video_frame.h",
|
|
]
|
|
|
|
deps = [
|
|
"//base",
|
|
"//media",
|
|
"//mojo/public/cpp/system",
|
|
"//ui/gfx/geometry",
|
|
]
|
|
}
|
|
|
|
source_set("unit_tests") {
|
|
testonly = true
|
|
|
|
sources = [
|
|
"media_type_converters_unittest.cc",
|
|
"mojo_data_pipe_read_write_unittest.cc",
|
|
"mojo_decoder_buffer_converter_unittest.cc",
|
|
"mojo_shared_buffer_video_frame_unittest.cc",
|
|
]
|
|
|
|
deps = [
|
|
"//base",
|
|
"//base/test:test_support",
|
|
"//media:test_support",
|
|
"//media/mojo:test_support",
|
|
"//testing/gmock",
|
|
"//testing/gtest",
|
|
]
|
|
}
|