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("//mojo/public/mojo_application.gni") | 6 import("//mojo/public/mojo_application.gni") |
7 import("//mojo/public/mojo_application_manifest.gni") | 7 import("//mojo/public/mojo_application_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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 "//services/shell/public/interfaces", | 100 "//services/shell/public/interfaces", |
101 ] | 101 ] |
102 | 102 |
103 if (is_android) { | 103 if (is_android) { |
104 sources += [ | 104 sources += [ |
105 "mojo_provision_fetcher.cc", | 105 "mojo_provision_fetcher.cc", |
106 "mojo_provision_fetcher.h", | 106 "mojo_provision_fetcher.h", |
107 ] | 107 ] |
108 } | 108 } |
109 | 109 |
| 110 if (force_mojo_media_player_renderer) { |
| 111 sources += [ |
| 112 "mojo_media_player_renderer_helper.cc", |
| 113 "mojo_media_player_renderer_helper.h", |
| 114 ] |
| 115 } |
| 116 |
110 if (enable_test_mojo_media_client) { | 117 if (enable_test_mojo_media_client) { |
111 defines += [ "ENABLE_TEST_MOJO_MEDIA_CLIENT" ] | 118 defines += [ "ENABLE_TEST_MOJO_MEDIA_CLIENT" ] |
112 sources += [ | 119 sources += [ |
113 "test_mojo_media_client.cc", | 120 "test_mojo_media_client.cc", |
114 "test_mojo_media_client.h", | 121 "test_mojo_media_client.h", |
115 ] | 122 ] |
116 } else if (is_android) { | 123 } else if (is_android) { |
117 sources += [ | 124 sources += [ |
118 "android_mojo_media_client.cc", | 125 "android_mojo_media_client.cc", |
119 "android_mojo_media_client.h", | 126 "android_mojo_media_client.h", |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 ":media", | 202 ":media", |
196 ":pipeline_test_manifest", | 203 ":pipeline_test_manifest", |
197 ] | 204 ] |
198 } | 205 } |
199 | 206 |
200 mojo_application_manifest("pipeline_test_manifest") { | 207 mojo_application_manifest("pipeline_test_manifest") { |
201 application_name = "media_pipeline_integration_unittests" | 208 application_name = "media_pipeline_integration_unittests" |
202 type = "exe" | 209 type = "exe" |
203 source = "pipeline_test_manifest.json" | 210 source = "pipeline_test_manifest.json" |
204 } | 211 } |
OLD | NEW |