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("//third_party/mojo/src/mojo/public/mojo_application.gni") | 7 import("//third_party/mojo/src/mojo/public/mojo_application.gni") |
8 | 8 |
9 # Target naming conventions: | 9 # Target naming conventions: |
10 # - converters: C++/Mojo type converters. | 10 # - converters: C++/Mojo type converters. |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 "//third_party/mojo/src/mojo/public/c/system:for_component", | 68 "//third_party/mojo/src/mojo/public/c/system:for_component", |
69 ] | 69 ] |
70 | 70 |
71 sources = [ | 71 sources = [ |
72 "mojo_cdm_promise.cc", | 72 "mojo_cdm_promise.cc", |
73 "mojo_cdm_promise.h", | 73 "mojo_cdm_promise.h", |
74 "mojo_cdm_service.cc", | 74 "mojo_cdm_service.cc", |
75 "mojo_cdm_service.h", | 75 "mojo_cdm_service.h", |
76 "mojo_type_trait.h", | 76 "mojo_type_trait.h", |
77 ] | 77 ] |
| 78 |
| 79 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
78 } | 80 } |
79 | 81 |
80 # media::Renderer implementation using mojo::MediaRenderer. | 82 # media::Renderer implementation using mojo::MediaRenderer. |
81 source_set("renderer_proxy") { | 83 source_set("renderer_proxy") { |
82 sources = [ | 84 sources = [ |
83 "mojo_demuxer_stream_impl.cc", | 85 "mojo_demuxer_stream_impl.cc", |
84 "mojo_demuxer_stream_impl.h", | 86 "mojo_demuxer_stream_impl.h", |
85 "mojo_renderer_factory.cc", | 87 "mojo_renderer_factory.cc", |
86 "mojo_renderer_factory.h", | 88 "mojo_renderer_factory.h", |
87 "mojo_renderer_impl.cc", | 89 "mojo_renderer_impl.cc", |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 group("tests") { | 202 group("tests") { |
201 testonly = true | 203 testonly = true |
202 deps = [ | 204 deps = [ |
203 ":media_mojo_unittests", | 205 ":media_mojo_unittests", |
204 ] | 206 ] |
205 | 207 |
206 if (!is_component_build) { | 208 if (!is_component_build) { |
207 deps += [ ":media_test" ] | 209 deps += [ ":media_test" ] |
208 } | 210 } |
209 } | 211 } |
OLD | NEW |