| Index: chrome/tools/service_discovery_sniffer/BUILD.gn
|
| diff --git a/chrome/tools/service_discovery_sniffer/BUILD.gn b/chrome/tools/service_discovery_sniffer/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..91c3beefd7dbb52a425bffa73eb538ce67b3d3f8
|
| --- /dev/null
|
| +++ b/chrome/tools/service_discovery_sniffer/BUILD.gn
|
| @@ -0,0 +1,25 @@
|
| +# 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",
|
| + "//chrome/utility",
|
| + "//net",
|
| + ]
|
| +
|
| + if (enable_webrtc) {
|
| + deps += [ "//third_party/libjingle:libjingle_webrtc" ]
|
| + }
|
| +}
|
|
|