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

Unified Diff: extensions/browser/BUILD.gn

Issue 434243003: extensions: Add GN version of extensions_shell_and_test_pak and unittests target. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add TODO + REBASE Created 6 years, 4 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/BUILD.gn ('k') | extensions/extensions.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/BUILD.gn
diff --git a/extensions/browser/BUILD.gn b/extensions/browser/BUILD.gn
index b1e81ce756412f1d09f2838967a04e920c284a0e..8a98edfeeee413feac94a7b12524977dde0c0265 100644
--- a/extensions/browser/BUILD.gn
+++ b/extensions/browser/BUILD.gn
@@ -2,6 +2,7 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+import("//build/config/crypto.gni")
import("//build/config/features.gni")
# GYP version: extensions/extensions.gyp:extensions_browser
@@ -172,12 +173,25 @@ source_set("browser") {
"api/app_view/app_view_internal_api.h",
"api/async_api_function.cc",
"api/async_api_function.h",
+ "api/cast_channel/cast_auth_util.h",
+ "api/cast_channel/cast_channel_api.cc",
+ "api/cast_channel/cast_channel_api.h",
+ "api/cast_channel/cast_message_util.cc",
+ "api/cast_channel/cast_message_util.h",
+ "api/cast_channel/cast_socket.cc",
+ "api/cast_channel/cast_socket.h",
"api/dns/dns_api.cc",
"api/dns/dns_api.h",
"api/dns/host_resolver_wrapper.cc",
"api/dns/host_resolver_wrapper.h",
"api/extensions_api_client.cc",
"api/extensions_api_client.h",
+ "api/hid/hid_api.cc",
+ "api/hid/hid_api.h",
+ "api/hid/hid_connection_resource.cc",
+ "api/hid/hid_connection_resource.h",
+ "api/hid/hid_device_manager.cc",
+ "api/hid/hid_device_manager.h",
"api/power/power_api.cc",
"api/power/power_api.h",
"api/power/power_api_manager.cc",
@@ -198,6 +212,8 @@ source_set("browser") {
"api/socket/socket_api.h",
"api/socket/tcp_socket.cc",
"api/socket/tcp_socket.h",
+ "api/socket/tls_socket.cc",
+ "api/socket/tls_socket.h",
"api/socket/udp_socket.cc",
"api/socket/udp_socket.h",
"api/sockets_tcp/sockets_tcp_api.cc",
@@ -242,8 +258,21 @@ source_set("browser") {
deps += [
"//components/usb_service",
+ "//crypto:platform",
+ "//device/hid",
"//device/serial",
+ "//extensions/browser/api/cast_channel:cast_channel_proto",
]
+
+ if (use_openssl) {
+ sources += [
+ "api/cast_channel/cast_auth_util_openssl.cc",
+ ]
+ } else {
+ sources += [
+ "api/cast_channel/cast_auth_util_nss.cc",
+ ]
+ }
}
if (is_win) {
« no previous file with comments | « extensions/BUILD.gn ('k') | extensions/extensions.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698