summaryrefslogtreecommitdiffstats
path: root/tools/android/forwarder2/BUILD.gn
blob: 87e6abf72262c4b21daf408cceb3013fe154d292 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# 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.

# GYP: //tools/android/forwarder2/forwarder.gyp:forwarder2
group("forwarder2") {
  datadeps = [
    ":host_forwarder($host_toolchain)",
    ":host_forwarder_copy($host_toolchain)",
    ":device_forwarder($default_toolchain)",
    ":device_forwarder_prepare_dist($default_toolchain)",
  ]
}

if (current_toolchain == default_toolchain) {
  import("//build/config/android/rules.gni")

  # GYP: //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",
      "self_deleter_helper.h",
      "socket.cc",
      "socket.h",
      "util.h",
    ]
    deps = [
      "//base",
      "//tools/android/common",
    ]
    datadeps = [
      "//build/android/pylib/device/commands",
    ]
  }

  # GYP: //tools/android/forwarder2/forwarder.gyp:forwarder2
  create_native_executable_dist("device_forwarder_prepare_dist") {
    dist_dir = "$root_build_dir/forwarder_dist"
    binary = "$root_build_dir/exe.stripped/device_forwarder"
  }
}

if (current_toolchain != default_toolchain) {
  # GYP: //tools/android/forwarder2/forwarder.gyp:host_forwarder
  executable("host_forwarder") {
    sources = [
      "command.cc",
      "command.h",
      "common.cc",
      "common.h",
      "daemon.cc",
      "daemon.h",
      "forwarder.cc",
      "forwarder.h",
      "forwarders_manager.cc",
      "forwarders_manager.h",
      "host_controller.cc",
      "host_controller.h",
      "host_forwarder_main.cc",
      "pipe_notifier.cc",
      "pipe_notifier.h",
      "self_deleter_helper.h",
      "socket.cc",
      "socket.h",
      "util.h",
    ]
    deps = [
      "//base",
      "//tools/android/common",
    ]
  }

  # GYP: //tools/android/forwarder2/forwarder.gyp:forwarder2
  copy("host_forwarder_copy") {
    sources = ["$root_out_dir/host_forwarder"]
    outputs = ["$root_build_dir/host_forwarder"]
  }
}