Cleanup: Pass std::string as const reference from chromeos/
[chromium-blink-merge.git] / chromecast / net / BUILD.gn
bloba4818650823e1caef63b964e68eb1c1b9f0518aa
1 # Copyright 2015 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 source_set("net") {
6   sources = [
7     "connectivity_checker.cc",
8     "connectivity_checker.h",
9     "connectivity_checker_impl.cc",
10     "connectivity_checker_impl.h",
11     "fake_connectivity_checker.cc",
12     "fake_connectivity_checker.h",
13     "net_switches.cc",
14     "net_switches.h",
15     "net_util_cast.cc",
16     "net_util_cast.h",
17   ]
19   if (!is_android) {
20     sources += [
21       "network_change_notifier_factory_cast.cc",
22       "network_change_notifier_factory_cast.h",
23     ]
24   }
26   deps = [
27     "//base",
28     "//chromecast/base:cast_sys_info",
29     "//chromecast/public",
30     "//net",
31   ]