| 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("//testing/test.gni") |
| 5 import("//third_party/mojo/src/mojo/public/mojo_application.gni") | 6 import("//third_party/mojo/src/mojo/public/mojo_application.gni") |
| 6 | 7 |
| 7 # Target naming conventions: | 8 # Target naming conventions: |
| 8 # - converters: C++/Mojo type converters. | 9 # - converters: C++/Mojo type converters. |
| 9 # - proxy: C++ implementations supported by mojo services. | 10 # - proxy: C++ implementations supported by mojo services. |
| 10 # - service: Mojo interface implementations. | 11 # - service: Mojo interface implementations. |
| 11 # - unittests: Unit tests for a particular class/file. | 12 # - unittests: Unit tests for a particular class/file. |
| 12 # - test: Tests for a particular app, e.g. media. | 13 # - test: Tests for a particular app, e.g. media. |
| 13 | 14 |
| 14 source_set("converters") { | 15 source_set("converters") { |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 group("tests") { | 192 group("tests") { |
| 192 testonly = true | 193 testonly = true |
| 193 deps = [ | 194 deps = [ |
| 194 ":media_mojo_unittests", | 195 ":media_mojo_unittests", |
| 195 ] | 196 ] |
| 196 | 197 |
| 197 if (!is_component_build) { | 198 if (!is_component_build) { |
| 198 deps += [ ":media_test" ] | 199 deps += [ ":media_test" ] |
| 199 } | 200 } |
| 200 } | 201 } |
| OLD | NEW |