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 28 matching lines...) Expand all Loading... |
39 "//base", | 39 "//base", |
40 "//base/test:test_support", | 40 "//base/test:test_support", |
41 "//media", | 41 "//media", |
42 "//media/base:test_support", | 42 "//media/base:test_support", |
43 "//media/mojo/interfaces", | 43 "//media/mojo/interfaces", |
44 "//mojo/edk/system", | 44 "//mojo/edk/system", |
45 "//mojo/edk/test:run_all_unittests", | 45 "//mojo/edk/test:run_all_unittests", |
46 "//mojo/environment:chromium", | 46 "//mojo/environment:chromium", |
47 "//testing/gmock", | 47 "//testing/gmock", |
48 "//testing/gtest", | 48 "//testing/gtest", |
| 49 "//ui/gfx:test_support", |
49 ] | 50 ] |
50 } | 51 } |
51 | 52 |
52 group("tests") { | 53 group("tests") { |
53 testonly = true | 54 testonly = true |
54 deps = [ | 55 deps = [ |
55 ":media_mojo_unittests", | 56 ":media_mojo_unittests", |
56 ] | 57 ] |
57 } | 58 } |
OLD | NEW |