| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 source_set("common") { | 5 source_set("common") { |
| 6 sources = [ | 6 sources = [ |
| 7 "media_type_converters.cc", | 7 "media_type_converters.cc", |
| 8 "media_type_converters.h", | 8 "media_type_converters.h", |
| 9 "mojo_decoder_buffer_converter.cc", | 9 "mojo_decoder_buffer_converter.cc", |
| 10 "mojo_decoder_buffer_converter.h", | 10 "mojo_decoder_buffer_converter.h", |
| 11 "mojo_shared_buffer_video_frame.cc", | |
| 12 "mojo_shared_buffer_video_frame.h", | |
| 13 ] | 11 ] |
| 14 | 12 |
| 15 deps = [ | 13 deps = [ |
| 14 ":mojo_shared_buffer_video_frame", |
| 16 "//base", | 15 "//base", |
| 17 "//gpu/ipc/common:struct_traits", | 16 "//gpu/ipc/common:struct_traits", |
| 18 "//media", | 17 "//media", |
| 19 "//media/mojo/interfaces", | 18 "//media/mojo/interfaces", |
| 20 "//mojo/common", | 19 "//mojo/common", |
| 21 "//mojo/public/cpp/bindings", | 20 "//mojo/public/cpp/bindings", |
| 22 "//mojo/public/cpp/system", | 21 "//mojo/public/cpp/system", |
| 23 "//ui/gfx/geometry", | 22 "//ui/gfx/geometry", |
| 24 "//ui/gfx/geometry/mojo", | 23 "//ui/gfx/geometry/mojo", |
| 25 ] | 24 ] |
| 26 } | 25 } |
| 26 |
| 27 # This is a separate target so that //media/mojo/interfaces can depend on it |
| 28 # without creating a cycle. |
| 29 source_set("mojo_shared_buffer_video_frame") { |
| 30 sources = [ |
| 31 "mojo_shared_buffer_video_frame.cc", |
| 32 "mojo_shared_buffer_video_frame.h", |
| 33 ] |
| 34 |
| 35 deps = [ |
| 36 "//base", |
| 37 "//media", |
| 38 "//mojo/public/cpp/system", |
| 39 "//ui/gfx/geometry", |
| 40 ] |
| 41 } |
| OLD | NEW |