| 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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 sources = [ | 171 sources = [ |
| 172 "main.cc", | 172 "main.cc", |
| 173 "test_mojo_media_client.cc", | 173 "test_mojo_media_client.cc", |
| 174 "test_mojo_media_client.h", | 174 "test_mojo_media_client.h", |
| 175 ] | 175 ] |
| 176 | 176 |
| 177 deps = [ | 177 deps = [ |
| 178 ":services", | 178 ":services", |
| 179 "//base", | 179 "//base", |
| 180 "//media", | 180 "//media", |
| 181 "//mojo/logging", | |
| 182 "//mojo/public/c/system:for_shared_library", | 181 "//mojo/public/c/system:for_shared_library", |
| 183 "//services/shell/public/cpp:sources", | 182 "//services/shell/public/cpp:sources", |
| 184 ] | 183 ] |
| 185 } | 184 } |
| 186 | 185 |
| 187 mojo_application_manifest("media_manifest") { | 186 mojo_application_manifest("media_manifest") { |
| 188 application_name = "media" | 187 application_name = "media" |
| 189 source = "media_manifest.json" | 188 source = "media_manifest.json" |
| 190 } | 189 } |
| 191 | 190 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 ":media", | 231 ":media", |
| 233 ":pipeline_test_manifest", | 232 ":pipeline_test_manifest", |
| 234 ] | 233 ] |
| 235 } | 234 } |
| 236 | 235 |
| 237 mojo_application_manifest("pipeline_test_manifest") { | 236 mojo_application_manifest("pipeline_test_manifest") { |
| 238 application_name = "media_pipeline_integration_unittests" | 237 application_name = "media_pipeline_integration_unittests" |
| 239 type = "exe" | 238 type = "exe" |
| 240 source = "pipeline_test_manifest.json" | 239 source = "pipeline_test_manifest.json" |
| 241 } | 240 } |
| OLD | NEW |