| 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/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
| 7 | 7 |
| 8 group("child") { | 8 group("child") { |
| 9 testonly = true | 9 testonly = true |
| 10 deps = [ | 10 deps = [ |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 "test_native_main.h", | 48 "test_native_main.h", |
| 49 ] | 49 ] |
| 50 | 50 |
| 51 public_deps = [ | 51 public_deps = [ |
| 52 "//mojo/shell/runner:init", | 52 "//mojo/shell/runner:init", |
| 53 ] | 53 ] |
| 54 | 54 |
| 55 deps = [ | 55 deps = [ |
| 56 "//base", | 56 "//base", |
| 57 "//mojo/edk/system", | 57 "//mojo/edk/system", |
| 58 "//mojo/gles2", | |
| 59 "//mojo/message_pump", | 58 "//mojo/message_pump", |
| 60 "//mojo/shell/public/cpp", | 59 "//mojo/shell/public/cpp", |
| 61 "//mojo/shell/runner/child:lib", | 60 "//mojo/shell/runner/child:lib", |
| 62 ] | 61 ] |
| 63 } | 62 } |
| 64 | 63 |
| 65 mojom("apptest_interfaces") { | 64 mojom("apptest_interfaces") { |
| 66 sources = [ | 65 sources = [ |
| 67 "test_native_service.mojom", | 66 "test_native_service.mojom", |
| 68 ] | 67 ] |
| (...skipping 11 matching lines...) Expand all Loading... |
| 80 avoid_runner_cycle = true | 79 avoid_runner_cycle = true |
| 81 | 80 |
| 82 sources = [ | 81 sources = [ |
| 83 "native_apptest.cc", | 82 "native_apptest.cc", |
| 84 ] | 83 ] |
| 85 | 84 |
| 86 deps = [ | 85 deps = [ |
| 87 ":apptest_interfaces", | 86 ":apptest_interfaces", |
| 88 "//base", | 87 "//base", |
| 89 "//base/test:test_config", | 88 "//base/test:test_config", |
| 90 "//mojo/common:common_base", | |
| 91 "//mojo/shell/public/cpp:sources", | 89 "//mojo/shell/public/cpp:sources", |
| 92 "//mojo/shell/public/cpp:test_support", | 90 "//mojo/shell/public/cpp:test_support", |
| 93 ] | 91 ] |
| 94 | 92 |
| 95 data_deps = [ | 93 data_deps = [ |
| 96 ":native_target", | 94 ":native_target", |
| 97 ] | 95 ] |
| 98 } | 96 } |
| 99 | 97 |
| 100 executable("native_target") { | 98 executable("native_target") { |
| 101 output_name = "mojo_runner_child_apptest_native_target" | 99 output_name = "mojo_runner_child_apptest_native_target" |
| 102 testonly = true | 100 testonly = true |
| 103 | 101 |
| 104 sources = [ | 102 sources = [ |
| 105 "native_apptest_target.cc", | 103 "native_apptest_target.cc", |
| 106 ] | 104 ] |
| 107 | 105 |
| 108 deps = [ | 106 deps = [ |
| 109 ":apptest_interfaces", | 107 ":apptest_interfaces", |
| 110 ":lib", | 108 ":lib", |
| 111 ":test_native_main", | 109 ":test_native_main", |
| 112 "//base", | 110 "//base", |
| 113 "//build/config/sanitizers:deps", | 111 "//build/config/sanitizers:deps", |
| 114 "//mojo/common:common_base", | |
| 115 "//mojo/shell/public/cpp", | 112 "//mojo/shell/public/cpp", |
| 116 ] | 113 ] |
| 117 } | 114 } |
| OLD | NEW |