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("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 5 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 source_set("shell") { | 8 source_set("shell") { |
9 output_name = "mojo_shell" | 9 output_name = "mojo_shell" |
10 sources = [ | 10 sources = [ |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 "//url", | 51 "//url", |
52 "//third_party/mojo/src/mojo/edk/system", | 52 "//third_party/mojo/src/mojo/edk/system", |
53 "//mojo/environment:chromium", | 53 "//mojo/environment:chromium", |
54 "//mojo/util:filename_util", | 54 "//mojo/util:filename_util", |
55 ] | 55 ] |
56 } | 56 } |
57 | 57 |
58 test("mojo_shell_unittests") { | 58 test("mojo_shell_unittests") { |
59 sources = [ | 59 sources = [ |
60 "application_manager_unittest.cc", | 60 "application_manager_unittest.cc", |
| 61 "capability_filter_unittest.cc", |
61 "query_util_unittest.cc", | 62 "query_util_unittest.cc", |
62 ] | 63 ] |
63 | 64 |
64 deps = [ | 65 deps = [ |
65 ":shell", | 66 ":shell", |
66 ":test_bindings", | 67 ":test_bindings", |
67 "//base", | 68 "//base", |
68 "//mojo/application/public/cpp", | 69 "//mojo/application/public/cpp", |
69 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", | 70 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", |
70 "//testing/gtest", | 71 "//testing/gtest", |
71 "//url", | 72 "//url", |
72 ] | 73 ] |
73 } | 74 } |
74 | 75 |
75 mojom("test_bindings") { | 76 mojom("test_bindings") { |
76 sources = [ | 77 sources = [ |
77 "test.mojom", | 78 "test.mojom", |
78 ] | 79 ] |
79 } | 80 } |
OLD | NEW |