Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Side by Side Diff: extensions/browser/api/networking_private/BUILD.gn

Issue 2314313002: Add sessionType and playStoreStatus to chromeosInfoPrivate. (Closed)
Patch Set: initial Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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.
4
5 import("//build/config/features.gni")
6
7 source_set("networking_private") {
8 sources = [
9 "networking_private_api.cc",
10 "networking_private_api.h",
11 "networking_private_chromeos.cc",
12 "networking_private_chromeos.h",
13 "networking_private_delegate.cc",
14 "networking_private_delegate.h",
15 "networking_private_delegate_factory.cc",
16 "networking_private_delegate_factory.h",
17 "networking_private_delegate_observer.h",
18 "networking_private_event_router.h",
19 "networking_private_event_router_chromeos.cc",
20 "networking_private_event_router_factory.cc",
21 "networking_private_event_router_factory.h",
22 ]
23
24 deps = [
25 "//content/public/browser",
26 "//skia",
27 ]
28
29 if (!is_chromeos && is_linux) {
30 sources += [
31 "network_config_dbus_constants_linux.cc",
32 "network_config_dbus_constants_linux.h",
33 "networking_private_event_router_nonchromeos.cc",
34 "networking_private_linux.cc",
35 "networking_private_linux.h",
36 ]
37 if (use_dbus) {
38 deps += [ "//dbus" ]
39 }
40 } else if (is_win || is_mac) {
41 sources += [
42 "networking_private_event_router_nonchromeos.cc",
43 "networking_private_service_client.cc",
44 "networking_private_service_client.h",
45 ]
46 deps += [ "//components/wifi" ]
47 }
48 }
OLDNEW
« no previous file with comments | « extensions/browser/api/networking_config/BUILD.gn ('k') | extensions/browser/api/power/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698