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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 test("resource_provider_unittests") { | 111 test("resource_provider_unittests") { |
112 sources = [ | 112 sources = [ |
113 "file_utils_unittest.cc", | 113 "file_utils_unittest.cc", |
114 ] | 114 ] |
115 | 115 |
116 deps = [ | 116 deps = [ |
117 ":lib", | 117 ":lib", |
118 "//base", | 118 "//base", |
119 "//base/test:test_config", | 119 "//base/test:test_config", |
120 "//components/resource_provider/public/interfaces", | 120 "//components/resource_provider/public/interfaces", |
| 121 "//mojo/edk/test:run_all_unittests", |
121 "//mojo/environment:chromium", | 122 "//mojo/environment:chromium", |
122 "//mojo/platform_handle:for_shared_library", | 123 "//mojo/platform_handle:for_shared_library", |
123 "//testing/gtest", | 124 "//testing/gtest", |
124 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", | |
125 "//url", | 125 "//url", |
126 ] | 126 ] |
127 } | 127 } |
128 | 128 |
129 mojo_native_application("apptests") { | 129 mojo_native_application("apptests") { |
130 output_name = "resource_provider_apptests" | 130 output_name = "resource_provider_apptests" |
131 testonly = true | 131 testonly = true |
132 | 132 |
133 sources = [ | 133 sources = [ |
134 "resource_provider_apptest.cc", | 134 "resource_provider_apptest.cc", |
(...skipping 10 matching lines...) Expand all Loading... |
145 "//components/resource_provider/public/cpp", | 145 "//components/resource_provider/public/cpp", |
146 "//components/resource_provider/public/interfaces", | 146 "//components/resource_provider/public/interfaces", |
147 "//mojo/common", | 147 "//mojo/common", |
148 "//mojo/shell/public/cpp:test_support", | 148 "//mojo/shell/public/cpp:test_support", |
149 ] | 149 ] |
150 | 150 |
151 data_deps = [ | 151 data_deps = [ |
152 ":resource_provider", | 152 ":resource_provider", |
153 ] | 153 ] |
154 } | 154 } |
OLD | NEW |