| 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/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 | 7 |
| 8 executable("mojo_shell") { | 8 executable("mojo_shell") { |
| 9 deps = [ | 9 deps = [ |
| 10 ":lib", | 10 ":lib", |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 | 141 |
| 142 datadeps = [ | 142 datadeps = [ |
| 143 "//mojo/services/test_service:mojo_test_app", | 143 "//mojo/services/test_service:mojo_test_app", |
| 144 "//mojo/services/test_service:mojo_test_request_tracker_app", | 144 "//mojo/services/test_service:mojo_test_request_tracker_app", |
| 145 ] | 145 ] |
| 146 | 146 |
| 147 sources = [ | 147 sources = [ |
| 148 "child_process_host_unittest.cc", | 148 "child_process_host_unittest.cc", |
| 149 "dynamic_application_loader_unittest.cc", | 149 "dynamic_application_loader_unittest.cc", |
| 150 "in_process_dynamic_service_runner_unittest.cc", | 150 "in_process_dynamic_service_runner_unittest.cc", |
| 151 "mojo_url_resolver_unittest.cc", |
| 151 "shell_test_base.cc", | 152 "shell_test_base.cc", |
| 152 "shell_test_base.h", | 153 "shell_test_base.h", |
| 153 "shell_test_base_unittest.cc", | 154 "shell_test_base_unittest.cc", |
| 154 "shell_test_main.cc", | 155 "shell_test_main.cc", |
| 155 ] | 156 ] |
| 156 | 157 |
| 157 if (is_android) { | 158 if (is_android) { |
| 158 deps += [ | 159 deps += [ |
| 159 # TODO(GYP): | 160 # TODO(GYP): |
| 160 #'../testing/android/native_test.gyp:native_test_native_code', | 161 #'../testing/android/native_test.gyp:native_test_native_code', |
| (...skipping 29 matching lines...) Expand all Loading... |
| 190 "//mojo/edk/system", | 191 "//mojo/edk/system", |
| 191 "//mojo/environment:chromium", | 192 "//mojo/environment:chromium", |
| 192 ] | 193 ] |
| 193 | 194 |
| 194 sources = [ | 195 sources = [ |
| 195 "incoming_connection_listener_unittest.cc", | 196 "incoming_connection_listener_unittest.cc", |
| 196 "external_application_listener_unittest.cc", | 197 "external_application_listener_unittest.cc", |
| 197 "external_application_test_main.cc", | 198 "external_application_test_main.cc", |
| 198 ] | 199 ] |
| 199 } | 200 } |
| OLD | NEW |