Chromium Code Reviews| Index: extensions/browser/BUILD.gn |
| diff --git a/extensions/browser/BUILD.gn b/extensions/browser/BUILD.gn |
| index b1e81ce756412f1d09f2838967a04e920c284a0e..c856a45fb7b372d5b33753a0967bffd7331d86a9 100644 |
| --- a/extensions/browser/BUILD.gn |
| +++ b/extensions/browser/BUILD.gn |
| @@ -3,6 +3,7 @@ |
| # found in the LICENSE file. |
| import("//build/config/features.gni") |
| +import("//build/config/crypto.gni") |
|
brettw
2014/08/04 04:28:52
Nit: sort
tfarina
2014/08/05 14:13:19
Done.
|
| # GYP version: extensions/extensions.gyp:extensions_browser |
| source_set("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", |
| + "//device/hid", |
| "//device/serial", |
| + "//extensions/browser/api/cast_channel:cast_channel_proto", |
| + "//crypto:platform", |
|
brettw
2014/08/04 04:28:52
Nit: sort
tfarina
2014/08/05 14:13:19
Done.
|
| ] |
| + |
| + 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) { |