| 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 | 8 |
| 9 # Target naming conventions: | 9 # Target naming conventions: |
| 10 # - converters: C++/Mojo type converters. | 10 # - converters: C++/Mojo type converters. |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 "//media/test:mojo_pipeline_integration_tests", | 238 "//media/test:mojo_pipeline_integration_tests", |
| 239 ] | 239 ] |
| 240 | 240 |
| 241 data_deps = [ | 241 data_deps = [ |
| 242 ":media", | 242 ":media", |
| 243 ] | 243 ] |
| 244 } | 244 } |
| 245 | 245 |
| 246 group("services") { | 246 group("services") { |
| 247 public_deps = [ | 247 public_deps = [ |
| 248 ":media", |
| 248 ":proxy", | 249 ":proxy", |
| 249 ] | 250 ] |
| 250 | |
| 251 if (!is_component_build) { | |
| 252 public_deps += [ ":media" ] | |
| 253 } | |
| 254 } | 251 } |
| 255 | 252 |
| 256 group("tests") { | 253 group("tests") { |
| 257 testonly = true | 254 testonly = true |
| 258 deps = [ | 255 deps = [ |
| 256 ":media_apptests", |
| 259 ":media_mojo_unittests", | 257 ":media_mojo_unittests", |
| 258 ":media_pipeline_integration_apptests", |
| 260 ] | 259 ] |
| 261 | |
| 262 if (!is_component_build) { | |
| 263 deps += [ | |
| 264 ":media_apptests", | |
| 265 ":media_pipeline_integration_apptests", | |
| 266 ] | |
| 267 } | |
| 268 } | 260 } |
| OLD | NEW |