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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 test("media_mojo_unittests") { | 169 test("media_mojo_unittests") { |
170 sources = [ | 170 sources = [ |
171 "media_type_converters_unittest.cc", | 171 "media_type_converters_unittest.cc", |
172 ] | 172 ] |
173 | 173 |
174 deps = [ | 174 deps = [ |
175 ":converters", | 175 ":converters", |
176 "//base", | 176 "//base", |
177 "//base/test:test_support", | 177 "//base/test:test_support", |
178 "//media", | 178 "//media", |
| 179 "//media/base:test_support", |
179 "//media/mojo/interfaces", | 180 "//media/mojo/interfaces", |
180 "//mojo/environment:chromium", | 181 "//mojo/environment:chromium", |
| 182 "//testing/gmock", |
181 "//testing/gtest", | 183 "//testing/gtest", |
182 "//third_party/mojo/src/mojo/edk/system", | 184 "//third_party/mojo/src/mojo/edk/system", |
183 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", | 185 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", |
184 ] | 186 ] |
185 } | 187 } |
186 | 188 |
187 mojo_native_application("media") { | 189 mojo_native_application("media") { |
188 sources = [ | 190 sources = [ |
189 "main.cc", | 191 "main.cc", |
190 ] | 192 ] |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 ":media_mojo_unittests", | 250 ":media_mojo_unittests", |
249 ] | 251 ] |
250 | 252 |
251 if (!is_component_build) { | 253 if (!is_component_build) { |
252 deps += [ | 254 deps += [ |
253 ":media_apptests", | 255 ":media_apptests", |
254 ":media_pipeline_integration_apptests", | 256 ":media_pipeline_integration_apptests", |
255 ] | 257 ] |
256 } | 258 } |
257 } | 259 } |
OLD | NEW |