Index: tools/android/forwarder2/BUILD.gn |
diff --git a/tools/android/forwarder2/BUILD.gn b/tools/android/forwarder2/BUILD.gn |
new file mode 100644 |
index 0000000000000000000000000000000000000000..45f16b34009fb5c36b45172b3efaa58422bd9485 |
--- /dev/null |
+++ b/tools/android/forwarder2/BUILD.gn |
@@ -0,0 +1,82 @@ |
+# Copyright 2014 The Chromium Authors. All rights reserved. |
+# Use of this source code is governed by a BSD-style license that can be |
+# found in the LICENSE file. |
+ |
+ |
+group("forwarder2") { |
+ deps = [ |
+ ":device_forwarder_dist($default_toolchain)", |
+ ":host_forwarder($host_toolchain)", |
+ ] |
+} |
+ |
+if (current_toolchain == default_toolchain) { |
+ # GYP version: tools/android/forwarder2/forwarder.gyp:device_forwarder |
+ executable("device_forwarder") { |
+ sources = [ |
+ "command.cc", |
+ "command.h", |
+ "common.cc", |
+ "common.h", |
+ "daemon.cc", |
+ "daemon.h", |
+ "device_controller.cc", |
+ "device_controller.h", |
+ "device_forwarder_main.cc", |
+ "device_listener.cc", |
+ "device_listener.h", |
+ "forwarder.cc", |
+ "forwarder.h", |
+ "forwarders_manager.cc", |
+ "forwarders_manager.h", |
+ "pipe_notifier.cc", |
+ "pipe_notifier.h", |
+ "socket.cc", |
+ "socket.h", |
+ ] |
+ |
+ deps = [ |
+ "//base", |
+ "//tools/android/common", |
+ ] |
+ datadeps = [ |
+ "//build/android/pylib/device/commands:chromium_commands", |
+ ] |
+ |
+ include_dirs = [ "../../" ] |
+ |
+ configs -= [ "//build/config/compiler:chromium_code" ] |
+ configs += [ "//build/config/compiler:no_chromium_code" ] |
+ } |
+ |
+ import("//build/config/android/rules.gni") |
+ create_native_executable_dist("device_forwarder_dist") { |
+ dist_dir = "$root_build_dir/forwarder_dist" |
+ binary = "$root_build_dir/exe.stripped/device_forwarder" |
+ } |
+} else { |
+ # GYP version: tools/android/forwarder2/forwarder.gyp:host_forwarder |
+ executable("host_forwarder") { |
+ sources = [ |
+ "command.cc", |
+ "common.cc", |
+ "daemon.cc", |
+ "forwarder.cc", |
+ "forwarders_manager.cc", |
+ "host_controller.cc", |
+ "host_forwarder_main.cc", |
+ "pipe_notifier.cc", |
+ "socket.cc", |
+ ] |
+ |
+ deps = [ |
+ "//base", |
+ "//tools/android/common", |
+ ] |
+ |
+ include_dirs = [ "../../.." ] |
+ |
+ configs -= [ "//build/config/compiler:chromium_code" ] |
+ configs += [ "//build/config/compiler:no_chromium_code" ] |
+} |
+} |