| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 "resource_provider_app.h", | 85 "resource_provider_app.h", |
| 86 "resource_provider_impl.cc", | 86 "resource_provider_impl.cc", |
| 87 "resource_provider_impl.h", | 87 "resource_provider_impl.h", |
| 88 ] | 88 ] |
| 89 | 89 |
| 90 deps = [ | 90 deps = [ |
| 91 "//base", | 91 "//base", |
| 92 "//components/resource_provider/public/interfaces", | 92 "//components/resource_provider/public/interfaces", |
| 93 "//mojo/application/public/cpp", | 93 "//mojo/application/public/cpp", |
| 94 "//mojo/common:common_base", | 94 "//mojo/common:common_base", |
| 95 "//mojo/services/tracing/public/cpp", |
| 95 "//url", | 96 "//url", |
| 96 ] | 97 ] |
| 97 } | 98 } |
| 98 | 99 |
| 99 test("resource_provider_unittests") { | 100 test("resource_provider_unittests") { |
| 100 sources = [ | 101 sources = [ |
| 101 "file_utils_unittest.cc", | 102 "file_utils_unittest.cc", |
| 102 ] | 103 ] |
| 103 | 104 |
| 104 deps = [ | 105 deps = [ |
| (...skipping 27 matching lines...) Expand all Loading... |
| 132 "//base/test:test_config", | 133 "//base/test:test_config", |
| 133 "//components/resource_provider/public/cpp", | 134 "//components/resource_provider/public/cpp", |
| 134 "//components/resource_provider/public/interfaces", | 135 "//components/resource_provider/public/interfaces", |
| 135 "//mojo/application/public/cpp:test_support", | 136 "//mojo/application/public/cpp:test_support", |
| 136 ] | 137 ] |
| 137 | 138 |
| 138 data_deps = [ | 139 data_deps = [ |
| 139 ":resource_provider", | 140 ":resource_provider", |
| 140 ] | 141 ] |
| 141 } | 142 } |
| OLD | NEW |