| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
| 6 import("//mojo/public/mojo_application_manifest.gni") | 6 import("//mojo/public/mojo_application_manifest.gni") |
| 7 import("//mojo/public/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
| 8 | 8 |
| 9 group("child") { | 9 group("child") { |
| 10 testonly = true | 10 testonly = true |
| 11 deps = [ | 11 deps = [ |
| 12 ":apptests", | 12 ":apptests", |
| 13 ":lib", | 13 ":lib", |
| 14 ] | 14 ] |
| 15 } | 15 } |
| 16 | 16 |
| 17 source_set("lib") { | 17 source_set("lib") { |
| 18 sources = [ | 18 sources = [ |
| 19 "runner_connection.cc", | 19 "runner_connection.cc", |
| 20 "runner_connection.h", | 20 "runner_connection.h", |
| 21 ] | 21 ] |
| 22 | 22 |
| 23 deps = [ | 23 deps = [ |
| 24 ":interfaces", | |
| 25 "//base", | 24 "//base", |
| 26 "//mojo/edk/system", | 25 "//mojo/edk/system", |
| 27 "//mojo/message_pump", | 26 "//mojo/message_pump", |
| 28 "//mojo/platform_handle:platform_handle_impl", | 27 "//mojo/platform_handle:platform_handle_impl", |
| 29 "//mojo/shell/public/interfaces", | 28 "//mojo/shell/public/interfaces", |
| 30 "//mojo/shell/runner/common", | 29 "//mojo/shell/runner/common", |
| 31 ] | 30 ] |
| 32 } | 31 } |
| 33 | 32 |
| 34 mojom("interfaces") { | |
| 35 sources = [ | |
| 36 "child_controller.mojom", | |
| 37 ] | |
| 38 | |
| 39 deps = [ | |
| 40 "//mojo/shell/public/interfaces", | |
| 41 ] | |
| 42 | |
| 43 import_dirs = [ "//mojo/services" ] | |
| 44 } | |
| 45 | |
| 46 source_set("test_native_main") { | 33 source_set("test_native_main") { |
| 47 sources = [ | 34 sources = [ |
| 48 "test_native_main.cc", | 35 "test_native_main.cc", |
| 49 "test_native_main.h", | 36 "test_native_main.h", |
| 50 ] | 37 ] |
| 51 | 38 |
| 52 public_deps = [ | 39 public_deps = [ |
| 53 "//mojo/shell/runner:init", | 40 "//mojo/shell/runner:init", |
| 54 ] | 41 ] |
| 55 | 42 |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 | 99 |
| 113 deps = [ | 100 deps = [ |
| 114 ":apptest_interfaces", | 101 ":apptest_interfaces", |
| 115 ":lib", | 102 ":lib", |
| 116 ":test_native_main", | 103 ":test_native_main", |
| 117 "//base", | 104 "//base", |
| 118 "//build/config/sanitizers:deps", | 105 "//build/config/sanitizers:deps", |
| 119 "//mojo/shell/public/cpp", | 106 "//mojo/shell/public/cpp", |
| 120 ] | 107 ] |
| 121 } | 108 } |
| OLD | NEW |