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