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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 "//mojo/shell", | 89 "//mojo/shell", |
90 ] | 90 ] |
91 | 91 |
92 deps = [ | 92 deps = [ |
93 "//base", | 93 "//base", |
94 ] | 94 ] |
95 } | 95 } |
96 | 96 |
97 source_set("lib") { | 97 source_set("lib") { |
98 sources = [ | 98 sources = [ |
| 99 "about_fetcher.cc", |
| 100 "about_fetcher.h", |
99 "child_process.cc", | 101 "child_process.cc", |
100 "child_process.h", | 102 "child_process.h", |
101 "child_process_host.cc", | 103 "child_process_host.cc", |
102 "child_process_host.h", | 104 "child_process_host.h", |
103 "context.cc", | 105 "context.cc", |
104 "context.h", | 106 "context.h", |
105 "init.cc", | 107 "init.cc", |
106 "init.h", | 108 "init.h", |
107 "out_of_process_native_runner.cc", | 109 "out_of_process_native_runner.cc", |
108 "out_of_process_native_runner.h", | 110 "out_of_process_native_runner.h", |
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
408 | 410 |
409 deps = [ | 411 deps = [ |
410 "//mojo/application/public/interfaces", | 412 "//mojo/application/public/interfaces", |
411 ] | 413 ] |
412 | 414 |
413 import_dirs = [ "//mojo/services" ] | 415 import_dirs = [ "//mojo/services" ] |
414 } | 416 } |
415 | 417 |
416 test("mojo_runner_unittests") { | 418 test("mojo_runner_unittests") { |
417 sources = [ | 419 sources = [ |
| 420 "about_fetcher_unittest.cc", |
418 "child_process_host_unittest.cc", | 421 "child_process_host_unittest.cc", |
419 "data_pipe_peek_unittest.cc", | 422 "data_pipe_peek_unittest.cc", |
420 "in_process_native_runner_unittest.cc", | 423 "in_process_native_runner_unittest.cc", |
421 "native_runner_unittest.cc", | 424 "native_runner_unittest.cc", |
422 "shell_test_base.cc", | 425 "shell_test_base.cc", |
423 "shell_test_base.h", | 426 "shell_test_base.h", |
424 "shell_test_base_android.cc", | 427 "shell_test_base_android.cc", |
425 "shell_test_base_unittest.cc", | 428 "shell_test_base_unittest.cc", |
426 "shell_test_main.cc", | 429 "shell_test_main.cc", |
427 "url_resolver_unittest.cc", | 430 "url_resolver_unittest.cc", |
428 ] | 431 ] |
429 | 432 |
430 deps = [ | 433 deps = [ |
431 ":in_process_native_runner", | 434 ":in_process_native_runner", |
432 ":lib", | 435 ":lib", |
433 "//base", | 436 "//base", |
434 "//base:i18n", | 437 "//base:i18n", |
435 "//base/test:test_support", | 438 "//base/test:test_support", |
| 439 "//mojo/application/public/cpp", |
436 "//mojo/common", | 440 "//mojo/common", |
437 "//mojo/environment:chromium", | 441 "//mojo/environment:chromium", |
438 "//mojo/services/test_service:bindings", | 442 "//mojo/services/test_service:bindings", |
439 "//mojo/shell", | 443 "//mojo/shell", |
440 "//mojo/util:filename_util", | 444 "//mojo/util:filename_util", |
441 "//testing/gtest", | 445 "//testing/gtest", |
442 "//third_party/mojo/src/mojo/edk/system", | 446 "//third_party/mojo/src/mojo/edk/system", |
443 "//third_party/mojo/src/mojo/public/cpp/bindings", | 447 "//third_party/mojo/src/mojo/public/cpp/bindings", |
444 "//url", | 448 "//url", |
445 ] | 449 ] |
(...skipping 28 matching lines...) Expand all Loading... |
474 ] | 478 ] |
475 | 479 |
476 deps = [ | 480 deps = [ |
477 "//base", | 481 "//base", |
478 "//mojo/application/public/cpp:test_support", | 482 "//mojo/application/public/cpp:test_support", |
479 "//mojo/runner/test:bindings", | 483 "//mojo/runner/test:bindings", |
480 "//mojo/services/network/public/interfaces", | 484 "//mojo/services/network/public/interfaces", |
481 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", | 485 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", |
482 ] | 486 ] |
483 } | 487 } |
OLD | NEW |