| 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 |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 output_name = "mojo_runner_child_apptest" | 65 output_name = "mojo_runner_child_apptest" |
| 66 testonly = true | 66 testonly = true |
| 67 avoid_runner_cycle = true | 67 avoid_runner_cycle = true |
| 68 | 68 |
| 69 sources = [ | 69 sources = [ |
| 70 "native_apptest.cc", | 70 "native_apptest.cc", |
| 71 ] | 71 ] |
| 72 | 72 |
| 73 deps = [ | 73 deps = [ |
| 74 ":apptest_interfaces", | 74 ":apptest_interfaces", |
| 75 ":manifest", | |
| 76 "//base", | 75 "//base", |
| 77 "//base/test:test_config", | 76 "//base/test:test_config", |
| 78 "//mojo/shell/public/cpp:sources", | 77 "//mojo/shell/public/cpp:sources", |
| 79 "//mojo/shell/public/cpp:test_support", | 78 "//mojo/shell/public/cpp:test_support", |
| 80 ] | 79 ] |
| 81 | 80 |
| 82 data_deps = [ | 81 data_deps = [ |
| 82 ":manifest", |
| 83 ":native_target", | 83 ":native_target", |
| 84 ] | 84 ] |
| 85 } | 85 } |
| 86 | 86 |
| 87 mojo_application_manifest("manifest") { | 87 mojo_application_manifest("manifest") { |
| 88 application_name = "mojo_runner_child_apptest" | 88 application_name = "mojo_runner_child_apptest" |
| 89 source = "manifest.json" | 89 source = "manifest.json" |
| 90 } | 90 } |
| 91 | 91 |
| 92 executable("native_target") { | 92 executable("native_target") { |
| 93 output_name = "mojo_runner_child_apptest_native_target" | 93 output_name = "mojo_runner_child_apptest_native_target" |
| 94 testonly = true | 94 testonly = true |
| 95 | 95 |
| 96 sources = [ | 96 sources = [ |
| 97 "native_apptest_target.cc", | 97 "native_apptest_target.cc", |
| 98 ] | 98 ] |
| 99 | 99 |
| 100 deps = [ | 100 deps = [ |
| 101 ":apptest_interfaces", | 101 ":apptest_interfaces", |
| 102 ":lib", | 102 ":lib", |
| 103 ":test_native_main", | 103 ":test_native_main", |
| 104 "//base", | 104 "//base", |
| 105 "//build/config/sanitizers:deps", | 105 "//build/config/sanitizers:deps", |
| 106 "//mojo/shell/public/cpp", | 106 "//mojo/shell/public/cpp", |
| 107 ] | 107 ] |
| 108 } | 108 } |
| OLD | NEW |