| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//testing/test.gni") |
| 6 | 6 |
| 7 # Target naming conventions: | 7 # Target naming conventions: |
| 8 # - unittests: Unit tests for a particular class/file. | 8 # - unittests: Unit tests for a particular class/file. |
| 9 | 9 |
| 10 source_set("common") { | 10 source_set("common") { |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 ":common", | 37 ":common", |
| 38 "//base", | 38 "//base", |
| 39 "//base/test:test_support", | 39 "//base/test:test_support", |
| 40 "//media", | 40 "//media", |
| 41 "//media/base:test_support", | 41 "//media/base:test_support", |
| 42 "//media/mojo/interfaces", | 42 "//media/mojo/interfaces", |
| 43 "//mojo/edk/system", | 43 "//mojo/edk/system", |
| 44 "//mojo/edk/test:run_all_unittests", | 44 "//mojo/edk/test:run_all_unittests", |
| 45 "//testing/gmock", | 45 "//testing/gmock", |
| 46 "//testing/gtest", | 46 "//testing/gtest", |
| 47 "//ui/gfx:test_support", | |
| 48 ] | 47 ] |
| 49 } | 48 } |
| 50 | 49 |
| 51 group("tests") { | 50 group("tests") { |
| 52 testonly = true | 51 testonly = true |
| 53 deps = [ | 52 deps = [ |
| 54 ":media_mojo_unittests", | 53 ":media_mojo_unittests", |
| 55 ] | 54 ] |
| 56 } | 55 } |
| OLD | NEW |