From 14ea50a8e3581d12cb42575db739f25ecdc4b288 Mon Sep 17 00:00:00 2001 From: "kjellander@webrtc.org" Date: Wed, 12 Nov 2014 07:56:21 +0000 Subject: [PATCH] Change the static_library("webrtc") to a source set in the GN build. Static libraries cannot have only headers as sources (libtool complains that there's nothing to actually link). TBR=brettw@chromium.org Review URL: https://webrtc-codereview.appspot.com/27159004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@7687 4adac7df-926f-26a2-2b94-8c16560cd09d --- webrtc/BUILD.gn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webrtc/BUILD.gn b/webrtc/BUILD.gn index 157be6f9af..3f337fdf2a 100644 --- a/webrtc/BUILD.gn +++ b/webrtc/BUILD.gn @@ -178,7 +178,7 @@ config("common_config") { } } -static_library("webrtc") { +source_set("webrtc") { sources = [ "call.h", "config.h",