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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 "mojo_cdm_service.h", | 103 "mojo_cdm_service.h", |
104 "mojo_cdm_service_context.cc", | 104 "mojo_cdm_service_context.cc", |
105 "mojo_cdm_service_context.h", | 105 "mojo_cdm_service_context.h", |
106 "mojo_decryptor_service.cc", | 106 "mojo_decryptor_service.cc", |
107 "mojo_decryptor_service.h", | 107 "mojo_decryptor_service.h", |
108 "mojo_type_trait.h", | 108 "mojo_type_trait.h", |
109 ] | 109 ] |
110 | 110 |
111 if (is_android) { | 111 if (is_android) { |
112 sources += [ | 112 sources += [ |
| 113 "mojo_media_permission.cc", |
| 114 "mojo_media_permission.h", |
113 "mojo_provision_fetcher.cc", | 115 "mojo_provision_fetcher.cc", |
114 "mojo_provision_fetcher.h", | 116 "mojo_provision_fetcher.h", |
115 ] | 117 ] |
116 } | 118 } |
117 | 119 |
118 # TODO(xhwang): Needed because targets can depend on cdm_service directly, | 120 # TODO(xhwang): Needed because targets can depend on cdm_service directly, |
119 # which is a bit hacky since we need to access CdmService directly | 121 # which is a bit hacky since we need to access CdmService directly |
120 # from C++ code (AVDA). In the future we'll make those decoders part of | 122 # from C++ code (AVDA). In the future we'll make those decoders part of |
121 # MojoMediaApplication, then we won't need this. | 123 # MojoMediaApplication, then we won't need this. |
122 all_dependent_configs = [ ":mojo_media_config" ] | 124 all_dependent_configs = [ ":mojo_media_config" ] |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
285 source = "pipeline_apptest_manifest.json" | 287 source = "pipeline_apptest_manifest.json" |
286 } | 288 } |
287 | 289 |
288 group("tests") { | 290 group("tests") { |
289 testonly = true | 291 testonly = true |
290 deps = [ | 292 deps = [ |
291 ":media_apptests", | 293 ":media_apptests", |
292 ":media_pipeline_integration_apptests", | 294 ":media_pipeline_integration_apptests", |
293 ] | 295 ] |
294 } | 296 } |
OLD | NEW |