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("//testing/test.gni") | 7 import("//testing/test.gni") |
8 | 8 |
9 if (is_android) { | 9 if (is_android) { |
10 import("//build/config/android/rules.gni") | 10 import("//build/config/android/rules.gni") |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 sources = [ | 133 sources = [ |
134 "resource_provider_apptest.cc", | 134 "resource_provider_apptest.cc", |
135 ] | 135 ] |
136 | 136 |
137 resources = [ | 137 resources = [ |
138 "//components/test/data/resource_provider/sample", | 138 "//components/test/data/resource_provider/sample", |
139 "//components/test/data/resource_provider/dir", | 139 "//components/test/data/resource_provider/dir", |
140 ] | 140 ] |
141 | 141 |
142 deps = [ | 142 deps = [ |
| 143 ":apptest_manifest", |
143 "//base", | 144 "//base", |
144 "//base/test:test_config", | 145 "//base/test:test_config", |
145 "//components/resource_provider/public/cpp", | 146 "//components/resource_provider/public/cpp", |
146 "//components/resource_provider/public/interfaces", | 147 "//components/resource_provider/public/interfaces", |
147 "//mojo/common", | 148 "//mojo/common", |
148 "//mojo/shell/public/cpp:test_support", | 149 "//mojo/shell/public/cpp:test_support", |
149 ] | 150 ] |
150 | 151 |
151 data_deps = [ | 152 data_deps = [ |
152 ":resource_provider", | 153 ":resource_provider", |
153 ] | 154 ] |
154 } | 155 } |
| 156 |
| 157 mojo_application_manifest("apptest_manifest") { |
| 158 application_name = "resource_provider_apptests" |
| 159 source = "apptest_manifest.json" |
| 160 } |
OLD | NEW |