OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("//media/media_options.gni") | 5 import("//media/media_options.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 import("//mojo/public/mojo_application.gni") | 7 import("//mojo/public/mojo_application.gni") |
8 import("//mojo/public/mojo_application_manifest.gni") | 8 import("//mojo/public/mojo_application_manifest.gni") |
9 | 9 |
10 # Target naming conventions: | 10 # Target naming conventions: |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 "mojo_decryptor.h", | 61 "mojo_decryptor.h", |
62 "mojo_demuxer_stream_impl.cc", | 62 "mojo_demuxer_stream_impl.cc", |
63 "mojo_demuxer_stream_impl.h", | 63 "mojo_demuxer_stream_impl.h", |
64 "mojo_renderer_factory.cc", | 64 "mojo_renderer_factory.cc", |
65 "mojo_renderer_factory.h", | 65 "mojo_renderer_factory.h", |
66 "mojo_renderer_impl.cc", | 66 "mojo_renderer_impl.cc", |
67 "mojo_renderer_impl.h", | 67 "mojo_renderer_impl.h", |
68 "mojo_type_trait.h", | 68 "mojo_type_trait.h", |
69 "mojo_video_decoder.cc", | 69 "mojo_video_decoder.cc", |
70 "mojo_video_decoder.h", | 70 "mojo_video_decoder.h", |
| 71 "video_overlay_factory.cc", |
| 72 "video_overlay_factory.h", |
71 ] | 73 ] |
72 | 74 |
73 public_configs = [ ":mojo_media_config" ] | 75 public_configs = [ ":mojo_media_config" ] |
74 | 76 |
75 deps = [ | 77 deps = [ |
76 "//base", | 78 "//base", |
77 "//media", | 79 "//media", |
78 "//media/mojo/common", | 80 "//media/mojo/common", |
79 "//media/mojo/interfaces", | 81 "//media/mojo/interfaces", |
80 "//mojo/common", | 82 "//mojo/common", |
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
295 source = "pipeline_apptest_manifest.json" | 297 source = "pipeline_apptest_manifest.json" |
296 } | 298 } |
297 | 299 |
298 group("tests") { | 300 group("tests") { |
299 testonly = true | 301 testonly = true |
300 deps = [ | 302 deps = [ |
301 ":media_apptests", | 303 ":media_apptests", |
302 ":media_pipeline_integration_apptests", | 304 ":media_pipeline_integration_apptests", |
303 ] | 305 ] |
304 } | 306 } |
OLD | NEW |