| 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("//third_party/mojo/src/mojo/public/mojo_application.gni") | 7 import("//third_party/mojo/src/mojo/public/mojo_application.gni") |
| 8 | 8 |
| 9 # Target naming conventions: | 9 # Target naming conventions: |
| 10 # - converters: C++/Mojo type converters. | 10 # - converters: C++/Mojo type converters. |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 "//mojo/common", | 77 "//mojo/common", |
| 78 "//mojo/environment:chromium", | 78 "//mojo/environment:chromium", |
| 79 "//third_party/mojo/src/mojo/public/c/system:for_component", | 79 "//third_party/mojo/src/mojo/public/c/system:for_component", |
| 80 ] | 80 ] |
| 81 | 81 |
| 82 sources = [ | 82 sources = [ |
| 83 "mojo_cdm_promise.cc", | 83 "mojo_cdm_promise.cc", |
| 84 "mojo_cdm_promise.h", | 84 "mojo_cdm_promise.h", |
| 85 "mojo_cdm_service.cc", | 85 "mojo_cdm_service.cc", |
| 86 "mojo_cdm_service.h", | 86 "mojo_cdm_service.h", |
| 87 "mojo_cdm_service_context.cc", |
| 88 "mojo_cdm_service_context.h", |
| 87 "mojo_type_trait.h", | 89 "mojo_type_trait.h", |
| 88 ] | 90 ] |
| 89 | 91 |
| 90 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 92 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 91 } | 93 } |
| 92 | 94 |
| 93 # MediaRenderer service; without a specific config. | 95 # MediaRenderer service; without a specific config. |
| 94 source_set("renderer_service_generic") { | 96 source_set("renderer_service_generic") { |
| 95 sources = [ | 97 sources = [ |
| 96 "demuxer_stream_provider_shim.cc", | 98 "demuxer_stream_provider_shim.cc", |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 group("tests") { | 188 group("tests") { |
| 187 testonly = true | 189 testonly = true |
| 188 deps = [ | 190 deps = [ |
| 189 ":media_mojo_unittests", | 191 ":media_mojo_unittests", |
| 190 ] | 192 ] |
| 191 | 193 |
| 192 if (!is_component_build) { | 194 if (!is_component_build) { |
| 193 deps += [ ":media_test" ] | 195 deps += [ ":media_test" ] |
| 194 } | 196 } |
| 195 } | 197 } |
| OLD | NEW |