| 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/mojo_application_package.gni") | 5 import("//mojo/mojo_application_package.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("//third_party/mojo/src/mojo/public/mojo_application.gni") | 7 import("//third_party/mojo/src/mojo/public/mojo_application.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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 "file_utils.h", | 77 "file_utils.h", |
| 78 "resource_provider_app.cc", | 78 "resource_provider_app.cc", |
| 79 "resource_provider_app.h", | 79 "resource_provider_app.h", |
| 80 "resource_provider_impl.cc", | 80 "resource_provider_impl.cc", |
| 81 "resource_provider_impl.h", | 81 "resource_provider_impl.h", |
| 82 ] | 82 ] |
| 83 | 83 |
| 84 deps = [ | 84 deps = [ |
| 85 "//base", | 85 "//base", |
| 86 "//components/resource_provider/public/interfaces", | 86 "//components/resource_provider/public/interfaces", |
| 87 "//mojo/application", | 87 "//mojo/application/public/cpp", |
| 88 "//mojo/common:common_base", | 88 "//mojo/common:common_base", |
| 89 "//mojo/platform_handle", | 89 "//mojo/platform_handle", |
| 90 "//url", | 90 "//url", |
| 91 ] | 91 ] |
| 92 } | 92 } |
| 93 | 93 |
| 94 test("tests") { | 94 test("tests") { |
| 95 output_name = "resource_provider_unittests" | 95 output_name = "resource_provider_unittests" |
| 96 sources = [ | 96 sources = [ |
| 97 "file_utils_unittest.cc", | 97 "file_utils_unittest.cc", |
| (...skipping 22 matching lines...) Expand all Loading... |
| 120 resources = [ | 120 resources = [ |
| 121 "//components/test/data/resource_provider/sample", | 121 "//components/test/data/resource_provider/sample", |
| 122 "//components/test/data/resource_provider/dir", | 122 "//components/test/data/resource_provider/dir", |
| 123 ] | 123 ] |
| 124 | 124 |
| 125 deps = [ | 125 deps = [ |
| 126 "//base", | 126 "//base", |
| 127 "//base/test:test_config", | 127 "//base/test:test_config", |
| 128 "//components/resource_provider/public/cpp", | 128 "//components/resource_provider/public/cpp", |
| 129 "//components/resource_provider/public/interfaces", | 129 "//components/resource_provider/public/interfaces", |
| 130 "//mojo/application", | 130 "//mojo/application/public/cpp:test_support", |
| 131 "//mojo/application:test_support", | |
| 132 "//mojo/common", | |
| 133 "//mojo/platform_handle", | 131 "//mojo/platform_handle", |
| 134 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings", | |
| 135 ] | 132 ] |
| 136 | 133 |
| 137 data_deps = [ ":resource_provider" ] | 134 data_deps = [ ":resource_provider" ] |
| 138 } | 135 } |
| OLD | NEW |