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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 "media_type_converters_unittest.cc", | 182 "media_type_converters_unittest.cc", |
183 ] | 183 ] |
184 | 184 |
185 deps = [ | 185 deps = [ |
186 ":converters", | 186 ":converters", |
187 "//base", | 187 "//base", |
188 "//base/test:test_support", | 188 "//base/test:test_support", |
189 "//media", | 189 "//media", |
190 "//media/base:test_support", | 190 "//media/base:test_support", |
191 "//media/mojo/interfaces", | 191 "//media/mojo/interfaces", |
| 192 "//mojo/edk/system", |
| 193 "//mojo/edk/test:run_all_unittests", |
192 "//mojo/environment:chromium", | 194 "//mojo/environment:chromium", |
193 "//testing/gmock", | 195 "//testing/gmock", |
194 "//testing/gtest", | 196 "//testing/gtest", |
195 "//third_party/mojo/src/mojo/edk/system", | |
196 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", | |
197 ] | 197 ] |
198 } | 198 } |
199 | 199 |
200 mojo_native_application("media") { | 200 mojo_native_application("media") { |
201 sources = [ | 201 sources = [ |
202 "main.cc", | 202 "main.cc", |
203 ] | 203 ] |
204 | 204 |
205 deps = [ | 205 deps = [ |
206 ":default_application", | 206 ":default_application", |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 ":media_mojo_unittests", | 265 ":media_mojo_unittests", |
266 ] | 266 ] |
267 | 267 |
268 if (!is_component_build) { | 268 if (!is_component_build) { |
269 deps += [ | 269 deps += [ |
270 ":media_apptests", | 270 ":media_apptests", |
271 ":media_pipeline_integration_apptests", | 271 ":media_pipeline_integration_apptests", |
272 ] | 272 ] |
273 } | 273 } |
274 } | 274 } |
OLD | NEW |