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("application_manager") { | 8 source_set("application_manager") { |
9 output_name = "mojo_application_manager" | 9 output_name = "mojo_application_manager" |
10 sources = [ | 10 sources = [ |
(...skipping 24 matching lines...) Expand all Loading... |
35 "//mojo/services/network/public/interfaces", | 35 "//mojo/services/network/public/interfaces", |
36 "//url", | 36 "//url", |
37 ] | 37 ] |
38 deps = [ | 38 deps = [ |
39 "//base/third_party/dynamic_annotations", | 39 "//base/third_party/dynamic_annotations", |
40 "//crypto:crypto", | 40 "//crypto:crypto", |
41 "//url", | 41 "//url", |
42 "//third_party/mojo/src/mojo/edk/system", | 42 "//third_party/mojo/src/mojo/edk/system", |
43 "//mojo/environment:chromium", | 43 "//mojo/environment:chromium", |
44 "//third_party/mojo_services/src/content_handler/public/interfaces", | 44 "//third_party/mojo_services/src/content_handler/public/interfaces", |
| 45 "//mojo/shell:common", |
45 "//mojo/shell:native_application_support", | 46 "//mojo/shell:native_application_support", |
46 "//mojo/shell:switches", | |
47 ] | 47 ] |
48 } | 48 } |
49 | 49 |
50 test("tests") { | 50 test("tests") { |
51 output_name = "mojo_application_manager_unittests" | 51 output_name = "mojo_application_manager_unittests" |
52 | 52 |
53 sources = [ | 53 sources = [ |
54 "application_manager_unittest.cc", | 54 "application_manager_unittest.cc", |
55 "query_util_unittest.cc", | 55 "query_util_unittest.cc", |
56 ] | 56 ] |
(...skipping 11 matching lines...) Expand all Loading... |
68 "//testing/gtest", | 68 "//testing/gtest", |
69 "//url", | 69 "//url", |
70 ] | 70 ] |
71 } | 71 } |
72 | 72 |
73 mojom("test_bindings") { | 73 mojom("test_bindings") { |
74 sources = [ | 74 sources = [ |
75 "test.mojom", | 75 "test.mojom", |
76 ] | 76 ] |
77 } | 77 } |
OLD | NEW |