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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 ] | 68 ] |
69 | 69 |
70 public_configs = [ ":mojo_media_config" ] | 70 public_configs = [ ":mojo_media_config" ] |
71 | 71 |
72 deps = [ | 72 deps = [ |
73 "//base", | 73 "//base", |
74 "//media", | 74 "//media", |
75 "//media/mojo/common", | 75 "//media/mojo/common", |
76 "//media/mojo/interfaces", | 76 "//media/mojo/interfaces", |
77 "//mojo/common", | 77 "//mojo/common", |
78 "//mojo/environment:chromium", | |
79 "//mojo/public/c/system:for_component", | 78 "//mojo/public/c/system:for_component", |
80 "//mojo/shell/public/interfaces", | 79 "//mojo/shell/public/interfaces", |
81 ] | 80 ] |
82 } | 81 } |
83 | 82 |
84 source_set("cdm_service") { | 83 source_set("cdm_service") { |
85 deps = [ | 84 deps = [ |
86 "//base", | 85 "//base", |
87 "//media", | 86 "//media", |
88 "//media/mojo/common", | 87 "//media/mojo/common", |
89 "//media/mojo/interfaces", | 88 "//media/mojo/interfaces", |
90 "//mojo/common", | 89 "//mojo/common", |
91 "//mojo/environment:chromium", | |
92 "//mojo/public/c/system:for_component", | 90 "//mojo/public/c/system:for_component", |
93 "//mojo/shell/public/interfaces", | 91 "//mojo/shell/public/interfaces", |
94 ] | 92 ] |
95 | 93 |
96 sources = [ | 94 sources = [ |
97 "mojo_cdm_promise.cc", | 95 "mojo_cdm_promise.cc", |
98 "mojo_cdm_promise.h", | 96 "mojo_cdm_promise.h", |
99 "mojo_cdm_service.cc", | 97 "mojo_cdm_service.cc", |
100 "mojo_cdm_service.h", | 98 "mojo_cdm_service.h", |
101 "mojo_cdm_service_context.cc", | 99 "mojo_cdm_service_context.cc", |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
264 source = "pipeline_apptest_manifest.json" | 262 source = "pipeline_apptest_manifest.json" |
265 } | 263 } |
266 | 264 |
267 group("tests") { | 265 group("tests") { |
268 testonly = true | 266 testonly = true |
269 deps = [ | 267 deps = [ |
270 ":media_apptests", | 268 ":media_apptests", |
271 ":media_pipeline_integration_apptests", | 269 ":media_pipeline_integration_apptests", |
272 ] | 270 ] |
273 } | 271 } |
OLD | NEW |