Remove unused parameter.
[chromium-blink-merge.git] / remoting / base / BUILD.gn
blobbb79d52643a046cc5e9f18dcae5c915a4ad69763
1 # Copyright 2014 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.
5 import("//remoting/remoting_srcs.gni")
7 source_set("base") {
8   sources = rebase_path(remoting_srcs_gypi_values.remoting_base_sources,
9                         ".",
10                         "//remoting")
12   configs += [ "//build/config/compiler:wexit_time_destructors" ]
14   public_deps = [
15     "//base",
16     "//net",
17     "//remoting/proto",
18     "//third_party/protobuf:protobuf_lite",
19   ]
20   deps = [
21     "//base/third_party/dynamic_annotations",
22     "//media",
23     "//media:shared_memory_support",
24     "//remoting/resources",
25     "//third_party/libvpx",
26     "//third_party/libyuv",
27     "//third_party/webrtc/modules/desktop_capture",
28     "//ui/base",
29   ]
32 source_set("unit_tests") {
33   testonly = true
35   sources = [
36     "auto_thread_task_runner_unittest.cc",
37     "auto_thread_unittest.cc",
38     "breakpad_win_unittest.cc",
39     "buffered_socket_writer_unittest.cc",
40     "capabilities_unittest.cc",
41     "compound_buffer_unittest.cc",
42     "rate_counter_unittest.cc",
43     "rsa_key_pair_unittest.cc",
44     "run_all_unittests.cc",
45     "running_average_unittest.cc",
46     "test_rsa_key_pair.h",
47     "typed_buffer_unittest.cc",
48     "util_unittest.cc",
49   ]
51   deps = [
52     ":base",
53     "//base",
54     "//net:test_support",
55     "//testing/gmock",
56     "//testing/gtest",
57     "//third_party/libyuv",
58     "//third_party/webrtc/modules/desktop_capture",
59   ]
61   if (is_win || is_mac || is_chromeos) {
62     sources += [ "resources_unittest.cc" ]
63     deps += [ "//breakpad:client" ]
64   }