| 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/shell/public/cpp/service.gni") | 6 import("//services/shell/public/cpp/service.gni") |
| 7 import("//services/shell/public/service_manifest.gni") | 7 import("//services/shell/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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 "//media/mojo/interfaces", | 88 "//media/mojo/interfaces", |
| 89 "//mojo/public/cpp/bindings", | 89 "//mojo/public/cpp/bindings", |
| 90 "//mojo/public/cpp/system", | 90 "//mojo/public/cpp/system", |
| 91 "//services/shell/public/cpp", | 91 "//services/shell/public/cpp", |
| 92 "//url", | 92 "//url", |
| 93 ] | 93 ] |
| 94 | 94 |
| 95 deps = [ | 95 deps = [ |
| 96 "//media:cdm_api", | 96 "//media:cdm_api", |
| 97 "//media:shared_memory_support", | 97 "//media:shared_memory_support", |
| 98 "//media/base", |
| 98 "//media/mojo/common", | 99 "//media/mojo/common", |
| 99 "//mojo/common", | 100 "//mojo/common", |
| 100 "//services/shell/public/interfaces", | 101 "//services/shell/public/interfaces", |
| 101 ] | 102 ] |
| 102 | 103 |
| 103 if (is_android) { | 104 if (is_android) { |
| 104 sources += [ | 105 sources += [ |
| 105 "mojo_provision_fetcher.cc", | 106 "mojo_provision_fetcher.cc", |
| 106 "mojo_provision_fetcher.h", | 107 "mojo_provision_fetcher.h", |
| 107 ] | 108 ] |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 ":media", | 196 ":media", |
| 196 ":pipeline_test_manifest", | 197 ":pipeline_test_manifest", |
| 197 ] | 198 ] |
| 198 } | 199 } |
| 199 | 200 |
| 200 service_manifest("pipeline_test_manifest") { | 201 service_manifest("pipeline_test_manifest") { |
| 201 name = "media_pipeline_integration_unittests" | 202 name = "media_pipeline_integration_unittests" |
| 202 type = "exe" | 203 type = "exe" |
| 203 source = "pipeline_test_manifest.json" | 204 source = "pipeline_test_manifest.json" |
| 204 } | 205 } |
| OLD | NEW |