| 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 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 410 deps = [ | 410 deps = [ |
| 411 "//mojo/application/public/interfaces", | 411 "//mojo/application/public/interfaces", |
| 412 ] | 412 ] |
| 413 | 413 |
| 414 import_dirs = [ "//mojo/services" ] | 414 import_dirs = [ "//mojo/services" ] |
| 415 } | 415 } |
| 416 | 416 |
| 417 test("mojo_runner_unittests") { | 417 test("mojo_runner_unittests") { |
| 418 sources = [ | 418 sources = [ |
| 419 "../fetcher/about_fetcher_unittest.cc", | 419 "../fetcher/about_fetcher_unittest.cc", |
| 420 "../fetcher/data_fetcher_unittest.cc", |
| 420 "../fetcher/network_fetcher_unittest.cc", | 421 "../fetcher/network_fetcher_unittest.cc", |
| 421 "../fetcher/url_resolver_unittest.cc", | 422 "../fetcher/url_resolver_unittest.cc", |
| 422 "child_process_host_unittest.cc", | 423 "child_process_host_unittest.cc", |
| 423 "data_pipe_peek_unittest.cc", | 424 "data_pipe_peek_unittest.cc", |
| 424 "in_process_native_runner_unittest.cc", | 425 "in_process_native_runner_unittest.cc", |
| 425 "native_runner_unittest.cc", | 426 "native_runner_unittest.cc", |
| 426 "shell_test_base.cc", | 427 "shell_test_base.cc", |
| 427 "shell_test_base.h", | 428 "shell_test_base.h", |
| 428 "shell_test_base_android.cc", | 429 "shell_test_base_android.cc", |
| 429 "shell_test_base_unittest.cc", | 430 "shell_test_base_unittest.cc", |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 481 ] | 482 ] |
| 482 | 483 |
| 483 deps = [ | 484 deps = [ |
| 484 "//base", | 485 "//base", |
| 485 "//mojo/application/public/cpp:test_support", | 486 "//mojo/application/public/cpp:test_support", |
| 486 "//mojo/runner/test:bindings", | 487 "//mojo/runner/test:bindings", |
| 487 "//mojo/services/network/public/interfaces", | 488 "//mojo/services/network/public/interfaces", |
| 488 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", | 489 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", |
| 489 ] | 490 ] |
| 490 } | 491 } |
| OLD | NEW |