| 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("//build/config/nacl/config.gni") | 5 import("//build/config/nacl/config.gni") |
| 6 import("//build/module_args/mojo.gni") | 6 import("//build/module_args/mojo.gni") |
| 7 import("//mojo/public/mojo.gni") | 7 import("//mojo/public/mojo.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 | 9 |
| 10 declare_args() { | 10 declare_args() { |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 "//mojo/dart/embedder/test", | 65 "//mojo/dart/embedder/test", |
| 66 "//mojo/edk:tests", | 66 "//mojo/edk:tests", |
| 67 "//mojo/file_utils:file_utils_apptests", | 67 "//mojo/file_utils:file_utils_apptests", |
| 68 "//mojo/gles2:mgl_unittests", | 68 "//mojo/gles2:mgl_unittests", |
| 69 "//mojo/public/cpp/bindings/tests:versioning_apptests", | 69 "//mojo/public/cpp/bindings/tests:versioning_apptests", |
| 70 "//mojo/services/files/c:apptests", | 70 "//mojo/services/files/c:apptests", |
| 71 "//mojo/services/files/cpp:files_impl_apptests", | 71 "//mojo/services/files/cpp:files_impl_apptests", |
| 72 "//mojo/tools:message_generator", | 72 "//mojo/tools:message_generator", |
| 73 ] | 73 ] |
| 74 | 74 |
| 75 if (is_linux || is_android) { | |
| 76 deps += [ "//mojo/converters/surfaces/tests:mojo_surfaces_lib_unittests" ] | |
| 77 } | |
| 78 | |
| 79 if (mojo_use_prebuilt_network_service) { | 75 if (mojo_use_prebuilt_network_service) { |
| 80 deps += [ "//mojo/public/tools:copy_network_service_apptests" ] | 76 deps += [ "//mojo/public/tools:copy_network_service_apptests" ] |
| 81 } | 77 } |
| 82 } | 78 } |
| 83 | 79 |
| 84 # This archives the system thunks implementation for exporting to SDK consumers. | 80 # This archives the system thunks implementation for exporting to SDK consumers. |
| 85 static_library("system_thunks") { | 81 static_library("system_thunks") { |
| 86 complete_static_lib = true | 82 complete_static_lib = true |
| 87 deps = [ | 83 deps = [ |
| 88 "//mojo/public/platform/native:system", | 84 "//mojo/public/platform/native:system", |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 "//mojo/public/cpp/utility/tests", | 152 "//mojo/public/cpp/utility/tests", |
| 157 ] | 153 ] |
| 158 } | 154 } |
| 159 | 155 |
| 160 test("mojo_system_impl_private_unittests") { | 156 test("mojo_system_impl_private_unittests") { |
| 161 deps = [ | 157 deps = [ |
| 162 "//mojo/edk/test:run_all_unittests", | 158 "//mojo/edk/test:run_all_unittests", |
| 163 "//mojo/public/platform/native:system_impl_private_tests", | 159 "//mojo/public/platform/native:system_impl_private_tests", |
| 164 ] | 160 ] |
| 165 } | 161 } |
| OLD | NEW |