From c1dba730282e5e33c0b8a19bbc5ebcefc1982f18 Mon Sep 17 00:00:00 2001 From: Henrik Kjellander Date: Tue, 5 Apr 2016 17:31:24 +0200 Subject: [PATCH] Remove .def files from GYP and GN in webrtc/base This was previously done in https://webrtc-codereview.appspot.com/49969004 but was accidentally readded in https://codereview.webrtc.org/1857163003/ .def files breaks downstream since it's not a recognized file extension. BUG=webrtc:4256 TBR=perkj@webrtc.org Review URL: https://codereview.webrtc.org/1855373005 . Cr-Commit-Position: refs/heads/master@{#12243} --- webrtc/base/BUILD.gn | 2 -- webrtc/base/base.gyp | 2 -- 2 files changed, 4 deletions(-) diff --git a/webrtc/base/BUILD.gn b/webrtc/base/BUILD.gn index 6832650546..03bb205380 100644 --- a/webrtc/base/BUILD.gn +++ b/webrtc/base/BUILD.gn @@ -421,9 +421,7 @@ static_library("rtc_base") { if (is_posix) { sources += [ "latebindingsymboltable.cc", - "latebindingsymboltable.cc.def", "latebindingsymboltable.h", - "latebindingsymboltable.h.def", "posix.cc", "posix.h", ] diff --git a/webrtc/base/base.gyp b/webrtc/base/base.gyp index 2da884fdd1..a5f0f7b44d 100644 --- a/webrtc/base/base.gyp +++ b/webrtc/base/base.gyp @@ -433,9 +433,7 @@ ['os_posix==1', { 'sources': [ 'latebindingsymboltable.cc', - 'latebindingsymboltable.cc.def', 'latebindingsymboltable.h', - 'latebindingsymboltable.h.def', 'posix.cc', 'posix.h', ],