| 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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 # Target naming conventions: | 7 # Target naming conventions: |
| 8 # - unittests: Unit tests for a particular class/file. | 8 # - unittests: Unit tests for a particular class/file. |
| 9 | 9 |
| 10 source_set("common") { | 10 source_set("common") { |
| 11 sources = [ | 11 sources = [ |
| 12 "media_type_converters.cc", | 12 "media_type_converters.cc", |
| 13 "media_type_converters.h", | 13 "media_type_converters.h", |
| 14 "mojo_shared_buffer_video_frame.cc", | 14 "mojo_shared_buffer_video_frame.cc", |
| 15 "mojo_shared_buffer_video_frame.h", | 15 "mojo_shared_buffer_video_frame.h", |
| 16 ] | 16 ] |
| 17 | 17 |
| 18 deps = [ | 18 deps = [ |
| 19 "//base", | 19 "//base", |
| 20 "//media", | 20 "//media", |
| 21 "//media/mojo/interfaces", | 21 "//media/mojo/interfaces", |
| 22 "//mojo/common", | 22 "//mojo/common", |
| 23 "//mojo/public/c/system:for_component", | 23 "//mojo/public/c/system:for_component", |
| 24 "//ui/gfx/geometry", | 24 "//ui/gfx/geometry", |
| 25 "//ui/gfx/geometry/mojo", | 25 "//ui/gfx/geometry/mojo", |
| 26 "//ui/gfx/geometry/mojo:interfaces", | |
| 27 ] | 26 ] |
| 28 } | 27 } |
| OLD | NEW |