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("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 if (is_android) { | 8 if (is_android) { |
9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
10 | 10 |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 deps = [ | 87 deps = [ |
88 "//base", | 88 "//base", |
89 "//components/resource_provider/public/interfaces", | 89 "//components/resource_provider/public/interfaces", |
90 "//mojo/application/public/cpp", | 90 "//mojo/application/public/cpp", |
91 "//mojo/common:common_base", | 91 "//mojo/common:common_base", |
92 "//mojo/platform_handle", | 92 "//mojo/platform_handle", |
93 "//url", | 93 "//url", |
94 ] | 94 ] |
95 } | 95 } |
96 | 96 |
97 test("tests") { | 97 test("resource_provider_unittests") { |
98 output_name = "resource_provider_unittests" | |
99 sources = [ | 98 sources = [ |
100 "file_utils_unittest.cc", | 99 "file_utils_unittest.cc", |
101 ] | 100 ] |
102 | 101 |
103 deps = [ | 102 deps = [ |
104 ":lib", | 103 ":lib", |
105 "//base", | 104 "//base", |
106 "//base/test:test_config", | 105 "//base/test:test_config", |
107 "//components/resource_provider/public/interfaces", | 106 "//components/resource_provider/public/interfaces", |
108 "//mojo/environment:chromium", | 107 "//mojo/environment:chromium", |
(...skipping 20 matching lines...) Expand all Loading... |
129 "//base", | 128 "//base", |
130 "//base/test:test_config", | 129 "//base/test:test_config", |
131 "//components/resource_provider/public/cpp", | 130 "//components/resource_provider/public/cpp", |
132 "//components/resource_provider/public/interfaces", | 131 "//components/resource_provider/public/interfaces", |
133 "//mojo/application/public/cpp:test_support", | 132 "//mojo/application/public/cpp:test_support", |
134 "//mojo/platform_handle", | 133 "//mojo/platform_handle", |
135 ] | 134 ] |
136 | 135 |
137 data_deps = [ ":resource_provider" ] | 136 data_deps = [ ":resource_provider" ] |
138 } | 137 } |
OLD | NEW |