| 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 # GYP: //tools/android/forwarder2/forwarder.gyp:forwarder2 | 5 # GYP: //tools/android/forwarder2/forwarder.gyp:forwarder2 |
| 6 group("forwarder2") { | 6 group("forwarder2") { |
| 7 datadeps = [ | 7 datadeps = [ |
| 8 ":host_forwarder($host_toolchain)", | 8 ":host_forwarder($host_toolchain)", |
| 9 ":host_forwarder_copy($host_toolchain)", | 9 ":host_forwarder_copy($host_toolchain)", |
| 10 ":device_forwarder($default_toolchain)", | 10 ":device_forwarder($default_toolchain)", |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 "forwarders_manager.h", | 35 "forwarders_manager.h", |
| 36 "pipe_notifier.cc", | 36 "pipe_notifier.cc", |
| 37 "pipe_notifier.h", | 37 "pipe_notifier.h", |
| 38 "self_deleter_helper.h", | 38 "self_deleter_helper.h", |
| 39 "socket.cc", | 39 "socket.cc", |
| 40 "socket.h", | 40 "socket.h", |
| 41 "util.h", | 41 "util.h", |
| 42 ] | 42 ] |
| 43 deps = [ | 43 deps = [ |
| 44 "//base", | 44 "//base", |
| 45 "//build/config/sanitizers:deps", |
| 45 "//tools/android/common", | 46 "//tools/android/common", |
| 46 ] | 47 ] |
| 47 datadeps = [ | 48 datadeps = [ |
| 48 "//build/android/pylib/device/commands", | 49 "//build/android/pylib/device/commands", |
| 49 ] | 50 ] |
| 50 } | 51 } |
| 51 | 52 |
| 52 # GYP: //tools/android/forwarder2/forwarder.gyp:forwarder2 | 53 # GYP: //tools/android/forwarder2/forwarder.gyp:forwarder2 |
| 53 create_native_executable_dist("device_forwarder_prepare_dist") { | 54 create_native_executable_dist("device_forwarder_prepare_dist") { |
| 54 dist_dir = "$root_build_dir/forwarder_dist" | 55 dist_dir = "$root_build_dir/forwarder_dist" |
| (...skipping 23 matching lines...) Expand all Loading... |
| 78 "host_forwarder_main.cc", | 79 "host_forwarder_main.cc", |
| 79 "pipe_notifier.cc", | 80 "pipe_notifier.cc", |
| 80 "pipe_notifier.h", | 81 "pipe_notifier.h", |
| 81 "self_deleter_helper.h", | 82 "self_deleter_helper.h", |
| 82 "socket.cc", | 83 "socket.cc", |
| 83 "socket.h", | 84 "socket.h", |
| 84 "util.h", | 85 "util.h", |
| 85 ] | 86 ] |
| 86 deps = [ | 87 deps = [ |
| 87 "//base", | 88 "//base", |
| 89 "//build/config/sanitizers:deps", |
| 88 "//tools/android/common", | 90 "//tools/android/common", |
| 89 ] | 91 ] |
| 90 } | 92 } |
| 91 | 93 |
| 92 # GYP: //tools/android/forwarder2/forwarder.gyp:forwarder2 | 94 # GYP: //tools/android/forwarder2/forwarder.gyp:forwarder2 |
| 93 copy("host_forwarder_copy") { | 95 copy("host_forwarder_copy") { |
| 94 sources = [ | 96 sources = [ |
| 95 "$root_out_dir/host_forwarder", | 97 "$root_out_dir/host_forwarder", |
| 96 ] | 98 ] |
| 97 outputs = [ | 99 outputs = [ |
| 98 "$root_build_dir/host_forwarder", | 100 "$root_build_dir/host_forwarder", |
| 99 ] | 101 ] |
| 100 deps = [ | 102 deps = [ |
| 101 ":host_forwarder", | 103 ":host_forwarder", |
| 102 ] | 104 ] |
| 103 } | 105 } |
| 104 } | 106 } |
| OLD | NEW |