| 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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 "media_type_converters_unittest.cc", | 179 "media_type_converters_unittest.cc", |
| 180 ] | 180 ] |
| 181 | 181 |
| 182 deps = [ | 182 deps = [ |
| 183 ":converters", | 183 ":converters", |
| 184 "//base", | 184 "//base", |
| 185 "//base/test:test_support", | 185 "//base/test:test_support", |
| 186 "//media", | 186 "//media", |
| 187 "//media/base:test_support", | 187 "//media/base:test_support", |
| 188 "//media/mojo/interfaces", | 188 "//media/mojo/interfaces", |
| 189 "//mojo/edk/system", |
| 190 "//mojo/edk/test:run_all_unittests", |
| 189 "//mojo/environment:chromium", | 191 "//mojo/environment:chromium", |
| 190 "//testing/gmock", | 192 "//testing/gmock", |
| 191 "//testing/gtest", | 193 "//testing/gtest", |
| 192 "//third_party/mojo/src/mojo/edk/system", | |
| 193 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", | |
| 194 ] | 194 ] |
| 195 } | 195 } |
| 196 | 196 |
| 197 mojo_native_application("media") { | 197 mojo_native_application("media") { |
| 198 sources = [ | 198 sources = [ |
| 199 "main.cc", | 199 "main.cc", |
| 200 ] | 200 ] |
| 201 | 201 |
| 202 deps = [ | 202 deps = [ |
| 203 ":application", | 203 ":application", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 ":media_mojo_unittests", | 258 ":media_mojo_unittests", |
| 259 ] | 259 ] |
| 260 | 260 |
| 261 if (!is_component_build) { | 261 if (!is_component_build) { |
| 262 deps += [ | 262 deps += [ |
| 263 ":media_apptests", | 263 ":media_apptests", |
| 264 ":media_pipeline_integration_apptests", | 264 ":media_pipeline_integration_apptests", |
| 265 ] | 265 ] |
| 266 } | 266 } |
| 267 } | 267 } |
| OLD | NEW |