| 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//mojo/generate_mojo_shell_assets_list.gni") | 6 import("//mojo/generate_mojo_shell_assets_list.gni") |
| 7 import("//third_party/mojo/src/mojo/public/mojo.gni") | 7 import("//third_party/mojo/src/mojo/public/mojo.gni") |
| 8 import("//third_party/mojo/src/mojo/public/mojo_application.gni") | 8 import("//third_party/mojo/src/mojo/public/mojo_application.gni") |
| 9 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 9 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 } | 353 } |
| 354 | 354 |
| 355 mojom("child_process_bindings") { | 355 mojom("child_process_bindings") { |
| 356 sources = [ | 356 sources = [ |
| 357 "child_process.mojom", | 357 "child_process.mojom", |
| 358 ] | 358 ] |
| 359 | 359 |
| 360 deps = [ | 360 deps = [ |
| 361 "//mojo/application/public/interfaces", | 361 "//mojo/application/public/interfaces", |
| 362 ] | 362 ] |
| 363 |
| 364 import_dirs = [ "//mojo/services" ] |
| 363 } | 365 } |
| 364 | 366 |
| 365 test("tests") { | 367 test("tests") { |
| 366 output_name = "mojo_runner_unittests" | 368 output_name = "mojo_runner_unittests" |
| 367 sources = [ | 369 sources = [ |
| 368 "child_process_host_unittest.cc", | 370 "child_process_host_unittest.cc", |
| 369 "data_pipe_peek_unittest.cc", | 371 "data_pipe_peek_unittest.cc", |
| 370 "in_process_native_runner_unittest.cc", | 372 "in_process_native_runner_unittest.cc", |
| 371 "native_runner_unittest.cc", | 373 "native_runner_unittest.cc", |
| 372 "shell_test_base.cc", | 374 "shell_test_base.cc", |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 424 ] | 426 ] |
| 425 | 427 |
| 426 deps = [ | 428 deps = [ |
| 427 "//base", | 429 "//base", |
| 428 "//mojo/application/public/cpp:test_support", | 430 "//mojo/application/public/cpp:test_support", |
| 429 "//mojo/runner/test:bindings", | 431 "//mojo/runner/test:bindings", |
| 430 "//mojo/services/network/public/interfaces", | 432 "//mojo/services/network/public/interfaces", |
| 431 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", | 433 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", |
| 432 ] | 434 ] |
| 433 } | 435 } |
| OLD | NEW |