| 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_media_log_service.cc", |
| 12 "mojo_media_log_service.h", |
| 11 ] | 13 ] |
| 12 | 14 |
| 13 deps = [ | 15 deps = [ |
| 14 ":mojo_shared_buffer_video_frame", | 16 ":mojo_shared_buffer_video_frame", |
| 15 "//base", | 17 "//base", |
| 16 "//gpu/ipc/common:struct_traits", | 18 "//gpu/ipc/common:struct_traits", |
| 17 "//media", | 19 "//media", |
| 18 "//media/mojo/interfaces", | 20 "//media/mojo/interfaces", |
| 19 "//mojo/common", | 21 "//mojo/common", |
| 20 "//mojo/public/cpp/bindings", | 22 "//mojo/public/cpp/bindings", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 32 "mojo_shared_buffer_video_frame.h", | 34 "mojo_shared_buffer_video_frame.h", |
| 33 ] | 35 ] |
| 34 | 36 |
| 35 deps = [ | 37 deps = [ |
| 36 "//base", | 38 "//base", |
| 37 "//media", | 39 "//media", |
| 38 "//mojo/public/cpp/system", | 40 "//mojo/public/cpp/system", |
| 39 "//ui/gfx/geometry", | 41 "//ui/gfx/geometry", |
| 40 ] | 42 ] |
| 41 } | 43 } |
| OLD | NEW |