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 25 matching lines...) Expand all Loading... |
36 "//third_party/mojo/src/mojo/public/interfaces/application:application", | 36 "//third_party/mojo/src/mojo/public/interfaces/application:application", |
37 "//mojo/services/network/public/interfaces", | 37 "//mojo/services/network/public/interfaces", |
38 "//url", | 38 "//url", |
39 ] | 39 ] |
40 deps = [ | 40 deps = [ |
41 "//base/third_party/dynamic_annotations", | 41 "//base/third_party/dynamic_annotations", |
42 "//crypto:crypto", | 42 "//crypto:crypto", |
43 "//url", | 43 "//url", |
44 "//third_party/mojo/src/mojo/edk/system", | 44 "//third_party/mojo/src/mojo/edk/system", |
45 "//mojo/environment:chromium", | 45 "//mojo/environment:chromium", |
| 46 "//mojo/util:filename_util", |
46 "//third_party/mojo_services/src/content_handler/public/interfaces", | 47 "//third_party/mojo_services/src/content_handler/public/interfaces", |
47 "//mojo/runner:native_application_support", | 48 "//mojo/runner:native_application_support", |
48 ] | 49 ] |
49 } | 50 } |
50 | 51 |
51 test("tests") { | 52 test("tests") { |
52 output_name = "mojo_shell_unittests" | 53 output_name = "mojo_shell_unittests" |
53 | 54 |
54 sources = [ | 55 sources = [ |
55 "application_manager_unittest.cc", | 56 "application_manager_unittest.cc", |
(...skipping 13 matching lines...) Expand all Loading... |
69 "//testing/gtest", | 70 "//testing/gtest", |
70 "//url", | 71 "//url", |
71 ] | 72 ] |
72 } | 73 } |
73 | 74 |
74 mojom("test_bindings") { | 75 mojom("test_bindings") { |
75 sources = [ | 76 sources = [ |
76 "test.mojom", | 77 "test.mojom", |
77 ] | 78 ] |
78 } | 79 } |
OLD | NEW |