summaryrefslogtreecommitdiffstats
path: root/chrome/tools/service_discovery_sniffer/BUILD.gn
blob: 161afbbd24a835ac4af1c7211f527d8ba6d7394b (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
# 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.

import("//build/config/features.gni")

executable("service_discovery_sniffer") {
  testonly = true
  sources = [
    "service_discovery_sniffer.cc",
    "service_discovery_sniffer.h",
  ]

  deps = [
    "//base",
    "//base/allocator",
    "//base/test:test_support",
    "//build/config/sanitizers:deps",
    "//chrome/common",
    "//chrome/utility",
    "//net",
  ]

  if (enable_webrtc) {
    deps += [ "//third_party/libjingle:libjingle_webrtc" ]
  }
}