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

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

Issue 2726223004: Introduce networking.cast API (Closed)
Patch Set: histograms Created 3 years, 9 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
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 6
7 source_set("networking_private") { 7 source_set("networking_private") {
8 sources = [ 8 sources = [
9 "networking_cast_delegate.h",
9 "networking_private_api.cc", 10 "networking_private_api.cc",
10 "networking_private_api.h", 11 "networking_private_api.h",
11 "networking_private_chromeos.cc", 12 "networking_private_chromeos.cc",
12 "networking_private_chromeos.h", 13 "networking_private_chromeos.h",
13 "networking_private_delegate.cc", 14 "networking_private_delegate.cc",
14 "networking_private_delegate.h", 15 "networking_private_delegate.h",
15 "networking_private_delegate_factory.cc", 16 "networking_private_delegate_factory.cc",
16 "networking_private_delegate_factory.h", 17 "networking_private_delegate_factory.h",
17 "networking_private_delegate_observer.h", 18 "networking_private_delegate_observer.h",
18 "networking_private_event_router.h", 19 "networking_private_event_router.h",
(...skipping 19 matching lines...) Expand all
38 } 39 }
39 } else if (is_win || is_mac) { 40 } else if (is_win || is_mac) {
40 sources += [ 41 sources += [
41 "networking_private_event_router_nonchromeos.cc", 42 "networking_private_event_router_nonchromeos.cc",
42 "networking_private_service_client.cc", 43 "networking_private_service_client.cc",
43 "networking_private_service_client.h", 44 "networking_private_service_client.h",
44 ] 45 ]
45 deps += [ "//components/wifi" ] 46 deps += [ "//components/wifi" ]
46 } 47 }
47 } 48 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698