| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 source_set("shell") { | 9 source_set("shell") { |
| 10 output_name = "mojo_shell" | 10 output_name = "mojo_shell" |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 ":shell", | 73 ":shell", |
| 74 ":test_bindings", | 74 ":test_bindings", |
| 75 "//mojo/application/public/cpp", | 75 "//mojo/application/public/cpp", |
| 76 "//mojo/application/public/interfaces", | 76 "//mojo/application/public/interfaces", |
| 77 "//testing/gtest", | 77 "//testing/gtest", |
| 78 ] | 78 ] |
| 79 } | 79 } |
| 80 | 80 |
| 81 test("mojo_shell_unittests") { | 81 test("mojo_shell_unittests") { |
| 82 sources = [ | 82 sources = [ |
| 83 "../fetcher/about_fetcher_unittest.cc", | |
| 84 "../fetcher/data_fetcher_unittest.cc", | |
| 85 "../fetcher/network_fetcher_unittest.cc", | |
| 86 "../fetcher/url_resolver_unittest.cc", | |
| 87 "application_manager_unittest.cc", | 83 "application_manager_unittest.cc", |
| 88 "capability_filter_unittest.cc", | 84 "capability_filter_unittest.cc", |
| 89 "data_pipe_peek_unittest.cc", | 85 "data_pipe_peek_unittest.cc", |
| 86 "fetcher/about_fetcher_unittest.cc", |
| 87 "fetcher/data_fetcher_unittest.cc", |
| 88 "fetcher/network_fetcher_unittest.cc", |
| 89 "fetcher/url_resolver_unittest.cc", |
| 90 "query_util_unittest.cc", | 90 "query_util_unittest.cc", |
| 91 ] | 91 ] |
| 92 | 92 |
| 93 deps = [ | 93 deps = [ |
| 94 ":shell", | 94 ":shell", |
| 95 ":test_bindings", | 95 ":test_bindings", |
| 96 ":test_support", | 96 ":test_support", |
| 97 "//base", | 97 "//base", |
| 98 "//mojo/application/public/cpp", | 98 "//mojo/application/public/cpp", |
| 99 "//mojo/edk/system:test_utils", | 99 "//mojo/edk/system:test_utils", |
| 100 "//mojo/fetcher", | |
| 101 "//mojo/public/cpp/system", | 100 "//mojo/public/cpp/system", |
| 101 "//mojo/shell/fetcher", |
| 102 "//mojo/shell/package_manager", | 102 "//mojo/shell/package_manager", |
| 103 "//mojo/util:filename_util", | 103 "//mojo/util:filename_util", |
| 104 "//testing/gtest", | 104 "//testing/gtest", |
| 105 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", | 105 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", |
| 106 "//url", | 106 "//url", |
| 107 ] | 107 ] |
| 108 } | 108 } |
| 109 | 109 |
| 110 mojom("test_bindings") { | 110 mojom("test_bindings") { |
| 111 sources = [ | 111 sources = [ |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 | 170 |
| 171 deps = [ | 171 deps = [ |
| 172 ":test_bindings", | 172 ":test_bindings", |
| 173 "//base", | 173 "//base", |
| 174 "//mojo/application/public/cpp", | 174 "//mojo/application/public/cpp", |
| 175 "//mojo/common:common_base", | 175 "//mojo/common:common_base", |
| 176 "//mojo/converters/network", | 176 "//mojo/converters/network", |
| 177 "//mojo/runner/child:test_native_main", | 177 "//mojo/runner/child:test_native_main", |
| 178 ] | 178 ] |
| 179 } | 179 } |
| OLD | NEW |