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.gni") | 5 import("//mojo/public/mojo_application.gni") |
6 import("//mojo/public/mojo_application_manifest.gni") | 6 import("//mojo/public/mojo_application_manifest.gni") |
7 import("//mojo/public/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
9 | 9 |
10 if (is_android) { | 10 if (is_android) { |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 "resource_provider_app.h", | 97 "resource_provider_app.h", |
98 "resource_provider_impl.cc", | 98 "resource_provider_impl.cc", |
99 "resource_provider_impl.h", | 99 "resource_provider_impl.h", |
100 ] | 100 ] |
101 | 101 |
102 deps = [ | 102 deps = [ |
103 "//base", | 103 "//base", |
104 "//components/resource_provider/public/interfaces", | 104 "//components/resource_provider/public/interfaces", |
105 "//mojo/common:common_base", | 105 "//mojo/common:common_base", |
106 "//mojo/platform_handle", | 106 "//mojo/platform_handle", |
107 "//mojo/services/tracing/public/cpp", | |
108 "//services/shell/public/cpp", | 107 "//services/shell/public/cpp", |
| 108 "//services/tracing/public/cpp", |
109 "//url", | 109 "//url", |
110 ] | 110 ] |
111 } | 111 } |
112 | 112 |
113 test("resource_provider_unittests") { | 113 test("resource_provider_unittests") { |
114 sources = [ | 114 sources = [ |
115 "file_utils_unittest.cc", | 115 "file_utils_unittest.cc", |
116 "resource_provider_unittest.cc", | 116 "resource_provider_unittest.cc", |
117 ] | 117 ] |
118 | 118 |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 type = "exe" | 171 type = "exe" |
172 application_name = "resource_provider_unittests" | 172 application_name = "resource_provider_unittests" |
173 source = "unittests_manifest.json" | 173 source = "unittests_manifest.json" |
174 } | 174 } |
175 | 175 |
176 mojom("test_interfaces") { | 176 mojom("test_interfaces") { |
177 sources = [ | 177 sources = [ |
178 "test.mojom", | 178 "test.mojom", |
179 ] | 179 ] |
180 } | 180 } |
OLD | NEW |