xref: /aosp_15_r20/external/chromium-trace/catapult/devil/BUILD.gn (revision 1fa4b3da657c0e9ad43c0220bacf9731820715a5)
1# Copyright 2017 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5group("devil") {
6  testonly = true
7  deps = []
8  data_deps = [
9    "../third_party/gsutil",
10  ]
11  data = [
12    "devil/",
13  ]
14
15  if (is_android) {
16    deps += [
17      ":empty_system_webview_apk",
18      "//buildtools/third_party/libc++($host_toolchain)",
19      "//tools/android/forwarder2",
20      "//tools/android/md5sum",
21    ]
22  }
23}
24
25if (is_android) {
26  import("//testing/android/empty_apk/empty_apk.gni")
27
28  empty_apk("empty_system_webview_apk") {
29    package_name = "com.android.webview"
30    apk_name = "EmptySystemWebView"
31  }
32}
33