| 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("//services/service_manager/public/cpp/service.gni") | 6 import("//services/service_manager/public/cpp/service.gni") |
| 7 import("//services/service_manager/public/service_manifest.gni") | 7 import("//services/service_manager/public/service_manifest.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 | 9 |
| 10 config("mojo_media_config") { | 10 config("mojo_media_config") { |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 "mojo_cdm_service.cc", | 68 "mojo_cdm_service.cc", |
| 69 "mojo_cdm_service.h", | 69 "mojo_cdm_service.h", |
| 70 "mojo_cdm_service_context.cc", | 70 "mojo_cdm_service_context.cc", |
| 71 "mojo_cdm_service_context.h", | 71 "mojo_cdm_service_context.h", |
| 72 "mojo_decryptor_service.cc", | 72 "mojo_decryptor_service.cc", |
| 73 "mojo_decryptor_service.h", | 73 "mojo_decryptor_service.h", |
| 74 "mojo_demuxer_stream_adapter.cc", | 74 "mojo_demuxer_stream_adapter.cc", |
| 75 "mojo_demuxer_stream_adapter.h", | 75 "mojo_demuxer_stream_adapter.h", |
| 76 "mojo_media_client.cc", | 76 "mojo_media_client.cc", |
| 77 "mojo_media_client.h", | 77 "mojo_media_client.h", |
| 78 "mojo_provision_fetcher.cc", |
| 79 "mojo_provision_fetcher.h", |
| 78 "mojo_renderer_service.cc", | 80 "mojo_renderer_service.cc", |
| 79 "mojo_renderer_service.h", | 81 "mojo_renderer_service.h", |
| 80 "mojo_video_decoder_service.cc", | 82 "mojo_video_decoder_service.cc", |
| 81 "mojo_video_decoder_service.h", | 83 "mojo_video_decoder_service.h", |
| 82 "test_mojo_media_client.cc", | 84 "test_mojo_media_client.cc", |
| 83 "test_mojo_media_client.h", | 85 "test_mojo_media_client.h", |
| 84 ] | 86 ] |
| 85 | 87 |
| 86 defines = [ "MEDIA_MOJO_IMPLEMENTATION" ] | 88 defines = [ "MEDIA_MOJO_IMPLEMENTATION" ] |
| 87 | 89 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 104 "//media:shared_memory_support", | 106 "//media:shared_memory_support", |
| 105 "//media/mojo/common", | 107 "//media/mojo/common", |
| 106 "//mojo/common", | 108 "//mojo/common", |
| 107 "//services/service_manager/public/interfaces", | 109 "//services/service_manager/public/interfaces", |
| 108 ] | 110 ] |
| 109 | 111 |
| 110 if (is_android) { | 112 if (is_android) { |
| 111 sources += [ | 113 sources += [ |
| 112 "android_mojo_media_client.cc", | 114 "android_mojo_media_client.cc", |
| 113 "android_mojo_media_client.h", | 115 "android_mojo_media_client.h", |
| 114 "mojo_provision_fetcher.cc", | |
| 115 "mojo_provision_fetcher.h", | |
| 116 ] | 116 ] |
| 117 } | 117 } |
| 118 } | 118 } |
| 119 | 119 |
| 120 service("media") { | 120 service("media") { |
| 121 testonly = true | 121 testonly = true |
| 122 | 122 |
| 123 sources = [ | 123 sources = [ |
| 124 "main.cc", | 124 "main.cc", |
| 125 ] | 125 ] |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 ":media", | 184 ":media", |
| 185 ":pipeline_test_manifest", | 185 ":pipeline_test_manifest", |
| 186 ] | 186 ] |
| 187 } | 187 } |
| 188 | 188 |
| 189 service_manifest("pipeline_test_manifest") { | 189 service_manifest("pipeline_test_manifest") { |
| 190 name = "media_pipeline_integration_unittests" | 190 name = "media_pipeline_integration_unittests" |
| 191 type = "exe" | 191 type = "exe" |
| 192 source = "pipeline_test_manifest.json" | 192 source = "pipeline_test_manifest.json" |
| 193 } | 193 } |
| OLD | NEW |