OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//mojo/public/mojo_application_manifest.gni") | 5 import("//mojo/public/mojo_application_manifest.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 # Target that builders build. | 8 # Target that builders build. |
9 group("all") { | 9 group("all") { |
10 testonly = true | 10 testonly = true |
(...skipping 25 matching lines...) Expand all Loading... |
36 sources = [ | 36 sources = [ |
37 "test/mash_test_suite.cc", | 37 "test/mash_test_suite.cc", |
38 "test/mash_test_suite.h", | 38 "test/mash_test_suite.h", |
39 "test/mash_unittests.cc", | 39 "test/mash_unittests.cc", |
40 ] | 40 ] |
41 deps = [ | 41 deps = [ |
42 "//base", | 42 "//base", |
43 "//base/test:test_support", | 43 "//base/test:test_support", |
44 "//mash/wm:resources", | 44 "//mash/wm:resources", |
45 "//mash/wm:unittests", | 45 "//mash/wm:unittests", |
46 "//mojo/platform_handle:platform_handle_impl", | |
47 "//services/shell/background:main", | 46 "//services/shell/background:main", |
48 "//ui/aura", | 47 "//ui/aura", |
49 "//ui/base", | 48 "//ui/base", |
50 "//ui/compositor:test_support", | 49 "//ui/compositor:test_support", |
51 "//ui/gl:test_support", | 50 "//ui/gl:test_support", |
52 ] | 51 ] |
53 data_deps = [ | 52 data_deps = [ |
54 ":unittests_manifest", | 53 ":unittests_manifest", |
55 "//mash/wm:resources", | 54 "//mash/wm:resources", |
56 ] | 55 ] |
57 } | 56 } |
58 | 57 |
59 mojo_application_manifest("unittests_manifest") { | 58 mojo_application_manifest("unittests_manifest") { |
60 type = "exe" | 59 type = "exe" |
61 application_name = "mash_unittests" | 60 application_name = "mash_unittests" |
62 source = "unittests_manifest.json" | 61 source = "unittests_manifest.json" |
63 } | 62 } |
OLD | NEW |