| 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/generate_mojo_shell_assets_list.gni") | 5 import("//mojo/generate_mojo_shell_assets_list.gni") |
| 6 import("//mojo/public/mojo_application.gni") | 6 import("//mojo/public/mojo_application.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 8 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
| 9 | 9 |
| 10 # We don't support building in the component build since mojo apps are | 10 # We don't support building in the component build since mojo apps are |
| (...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 "child_process.mojom", | 375 "child_process.mojom", |
| 376 ] | 376 ] |
| 377 | 377 |
| 378 deps = [ | 378 deps = [ |
| 379 "//mojo/application/public/interfaces", | 379 "//mojo/application/public/interfaces", |
| 380 ] | 380 ] |
| 381 | 381 |
| 382 import_dirs = [ "//mojo/services" ] | 382 import_dirs = [ "//mojo/services" ] |
| 383 } | 383 } |
| 384 | 384 |
| 385 test("tests") { | 385 test("mojo_runner_unittests") { |
| 386 output_name = "mojo_runner_unittests" | |
| 387 sources = [ | 386 sources = [ |
| 388 "child_process_host_unittest.cc", | 387 "child_process_host_unittest.cc", |
| 389 "data_pipe_peek_unittest.cc", | 388 "data_pipe_peek_unittest.cc", |
| 390 "in_process_native_runner_unittest.cc", | 389 "in_process_native_runner_unittest.cc", |
| 391 "native_runner_unittest.cc", | 390 "native_runner_unittest.cc", |
| 392 "shell_test_base.cc", | 391 "shell_test_base.cc", |
| 393 "shell_test_base.h", | 392 "shell_test_base.h", |
| 394 "shell_test_base_android.cc", | 393 "shell_test_base_android.cc", |
| 395 "shell_test_base_unittest.cc", | 394 "shell_test_base_unittest.cc", |
| 396 "shell_test_main.cc", | 395 "shell_test_main.cc", |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 444 ] | 443 ] |
| 445 | 444 |
| 446 deps = [ | 445 deps = [ |
| 447 "//base", | 446 "//base", |
| 448 "//mojo/application/public/cpp:test_support", | 447 "//mojo/application/public/cpp:test_support", |
| 449 "//mojo/runner/test:bindings", | 448 "//mojo/runner/test:bindings", |
| 450 "//mojo/services/network/public/interfaces", | 449 "//mojo/services/network/public/interfaces", |
| 451 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", | 450 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", |
| 452 ] | 451 ] |
| 453 } | 452 } |
| OLD | NEW |