From 43a6d2bbf897d98677e25308d85755b533514046 Mon Sep 17 00:00:00 2001 From: Artem Titov Date: Tue, 24 Jul 2018 10:36:53 +0200 Subject: [PATCH] Remove old base64 header To be landed after 8th Aug 2018 Bug: webrtc:8366 Change-Id: Icf5f2ecbf2e64de93ce3e6758966629f9cc3a2b9 Reviewed-on: https://webrtc-review.googlesource.com/90244 Reviewed-by: Harald Alvestrand Commit-Queue: Artem Titov Cr-Commit-Position: refs/heads/master@{#24240} --- rtc_base/BUILD.gn | 10 ---------- rtc_base/base64.h | 14 -------------- 2 files changed, 24 deletions(-) delete mode 100644 rtc_base/base64.h diff --git a/rtc_base/BUILD.gn b/rtc_base/BUILD.gn index 09fbe0fbd5..2dd4dc7a74 100644 --- a/rtc_base/BUILD.gn +++ b/rtc_base/BUILD.gn @@ -478,16 +478,6 @@ if (is_mac && !build_with_chromium) { } } -rtc_source_set("base64") { - visibility = [ "*" ] - sources = [ - "base64.h", - ] - deps = [ - "third_party/base64", - ] -} - rtc_source_set("rtc_task_queue") { visibility = [ "*" ] deps = [] diff --git a/rtc_base/base64.h b/rtc_base/base64.h deleted file mode 100644 index 56ebfc9431..0000000000 --- a/rtc_base/base64.h +++ /dev/null @@ -1,14 +0,0 @@ -/* - * Copyright 2018 The WebRTC Project Authors. All rights reserved. - * - * Use of this source code is governed by a BSD-style license - * that can be found in the LICENSE file in the root of the source - * tree. An additional intellectual property rights grant can be found - * in the file PATENTS. All contributing project authors may - * be found in the AUTHORS file in the root of the source tree. - */ - -// This is a temporary header file to move origin header from this location -// to specified in include. Don't use this header directly, use included one -// instead. -#include "rtc_base/third_party/base64/base64.h"