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

Unified Diff: extensions/browser/api/socket/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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « extensions/browser/api/serial/BUILD.gn ('k') | extensions/browser/api/sockets_tcp/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/api/socket/BUILD.gn
diff --git a/extensions/browser/api/socket/BUILD.gn b/extensions/browser/api/socket/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..f7c413f1088b7c5b4161363e78e3c6bff4f4d7b9
--- /dev/null
+++ b/extensions/browser/api/socket/BUILD.gn
@@ -0,0 +1,29 @@
+# Copyright 2015 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.
+source_set("socket") {
+ sources = [
+ "socket.cc",
+ "socket.h",
+ "socket_api.cc",
+ "socket_api.h",
+ "tcp_socket.cc",
+ "tcp_socket.h",
+ "tls_socket.cc",
+ "tls_socket.h",
+ "udp_socket.cc",
+ "udp_socket.h",
+ ]
+
+ if (is_chromeos) {
+ sources += [
+ "app_firewall_hole_manager.cc",
+ "app_firewall_hole_manager.h",
+ ]
+ }
+
+ deps = [
+ "//content/public/browser",
+ "//skia",
+ ]
+}
« no previous file with comments | « extensions/browser/api/serial/BUILD.gn ('k') | extensions/browser/api/sockets_tcp/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698