| 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 "//base", | 24 "//base", |
| 25 "//mojo/edk/system", | 25 "//mojo/edk/system", |
| 26 "//mojo/message_pump", | 26 "//mojo/message_pump", |
| 27 "//mojo/platform_handle:platform_handle_impl", | 27 "//mojo/platform_handle:platform_handle_impl", |
| 28 "//mojo/shell/public/cpp:sources", |
| 28 "//mojo/shell/public/interfaces", | 29 "//mojo/shell/public/interfaces", |
| 29 "//mojo/shell/runner/common", | 30 "//mojo/shell/runner/common", |
| 30 ] | 31 ] |
| 31 } | 32 } |
| 32 | 33 |
| 33 source_set("test_native_main") { | 34 source_set("test_native_main") { |
| 34 sources = [ | 35 sources = [ |
| 35 "test_native_main.cc", | 36 "test_native_main.cc", |
| 36 "test_native_main.h", | 37 "test_native_main.h", |
| 37 ] | 38 ] |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 | 100 |
| 100 deps = [ | 101 deps = [ |
| 101 ":apptest_interfaces", | 102 ":apptest_interfaces", |
| 102 ":lib", | 103 ":lib", |
| 103 ":test_native_main", | 104 ":test_native_main", |
| 104 "//base", | 105 "//base", |
| 105 "//build/config/sanitizers:deps", | 106 "//build/config/sanitizers:deps", |
| 106 "//mojo/shell/public/cpp", | 107 "//mojo/shell/public/cpp", |
| 107 ] | 108 ] |
| 108 } | 109 } |
| OLD | NEW |