| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 "//mojo/public/cpp/bindings", | 47 "//mojo/public/cpp/bindings", |
| 48 "//mojo/services/network/public/interfaces", | 48 "//mojo/services/network/public/interfaces", |
| 49 "//mojo/services/updater", | 49 "//mojo/services/updater", |
| 50 "//url", | 50 "//url", |
| 51 ] | 51 ] |
| 52 deps = [ | 52 deps = [ |
| 53 ":interfaces", | 53 ":interfaces", |
| 54 "//base/third_party/dynamic_annotations", | 54 "//base/third_party/dynamic_annotations", |
| 55 "//crypto:crypto", | 55 "//crypto:crypto", |
| 56 "//mojo/application/public/cpp:sources", | 56 "//mojo/application/public/cpp:sources", |
| 57 "//url", | |
| 58 "//third_party/mojo/src/mojo/edk/system", | |
| 59 "//mojo/environment:chromium", | 57 "//mojo/environment:chromium", |
| 60 "//mojo/util:filename_util", | 58 "//mojo/util:filename_util", |
| 59 "//third_party/mojo/src/mojo/edk/system", |
| 60 "//url", |
| 61 ] | 61 ] |
| 62 } | 62 } |
| 63 | 63 |
| 64 source_set("test_support") { | 64 source_set("test_support") { |
| 65 testonly = true | 65 testonly = true |
| 66 sources = [ | 66 sources = [ |
| 67 "capability_filter_test.cc", | 67 "capability_filter_test.cc", |
| 68 "capability_filter_test.h", | 68 "capability_filter_test.h", |
| 69 "test_package_manager.cc", | 69 "test_package_manager.cc", |
| 70 "test_package_manager.h", | 70 "test_package_manager.h", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 94 deps = [ | 94 deps = [ |
| 95 ":shell", | 95 ":shell", |
| 96 ":test_bindings", | 96 ":test_bindings", |
| 97 ":test_support", | 97 ":test_support", |
| 98 "//base", | 98 "//base", |
| 99 "//mojo/application/public/cpp", | 99 "//mojo/application/public/cpp", |
| 100 "//mojo/fetcher", | 100 "//mojo/fetcher", |
| 101 "//mojo/package_manager", | 101 "//mojo/package_manager", |
| 102 "//mojo/public/cpp/system", | 102 "//mojo/public/cpp/system", |
| 103 "//mojo/util:filename_util", | 103 "//mojo/util:filename_util", |
| 104 "//testing/gtest", |
| 104 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", | 105 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", |
| 105 "//testing/gtest", | |
| 106 "//url", | 106 "//url", |
| 107 ] | 107 ] |
| 108 } | 108 } |
| 109 | 109 |
| 110 mojom("test_bindings") { | 110 mojom("test_bindings") { |
| 111 sources = [ | 111 sources = [ |
| 112 "application_manager_apptests.mojom", | 112 "application_manager_apptests.mojom", |
| 113 "capability_filter_unittest.mojom", | 113 "capability_filter_unittest.mojom", |
| 114 "test.mojom", | 114 "test.mojom", |
| 115 ] | 115 ] |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 | 175 |
| 176 deps = [ | 176 deps = [ |
| 177 ":test_bindings", | 177 ":test_bindings", |
| 178 "//base", | 178 "//base", |
| 179 "//mojo/application/public/cpp", | 179 "//mojo/application/public/cpp", |
| 180 "//mojo/common:common_base", | 180 "//mojo/common:common_base", |
| 181 "//mojo/converters/network", | 181 "//mojo/converters/network", |
| 182 "//mojo/runner/child:test_native_main", | 182 "//mojo/runner/child:test_native_main", |
| 183 ] | 183 ] |
| 184 } | 184 } |
| OLD | NEW |