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

Side by Side Diff: webrtc/base/BUILD.gn

Issue 2747863003: Loosening the coupling between WebRTC and //third_party/protobuf (Closed)
Patch Set: Adding protobuf dep to DEPS file Created 3 years, 9 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 unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/base/DEPS » ('j') | webrtc/base/protobuf_utils.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 import("//build/config/crypto.gni") 9 import("//build/config/crypto.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 } 72 }
73 73
74 if (!rtc_build_ssl) { 74 if (!rtc_build_ssl) {
75 config("external_ssl_library") { 75 config("external_ssl_library") {
76 assert(rtc_ssl_root != "", 76 assert(rtc_ssl_root != "",
77 "You must specify rtc_ssl_root when rtc_build_ssl==0.") 77 "You must specify rtc_ssl_root when rtc_build_ssl==0.")
78 include_dirs = [ rtc_ssl_root ] 78 include_dirs = [ rtc_ssl_root ]
79 } 79 }
80 } 80 }
81 81
82 # TODO(mbonadei): wrap into an if to check if rtc_enable_protobuf is true?
kjellander_webrtc 2017/03/14 21:28:05 Yes, put this inside an if(rtc_enable_protobuf) co
mbonadei 2017/03/15 10:08:05 Done.
83 source_set("protobuf_utils") {
84 sources = [
85 "protobuf_utils.h",
86 ]
87 include_dirs = [ "//third_party/protobuf/src" ]
kjellander_webrtc 2017/03/14 21:28:05 I think you should replace this with a deps entry
mbonadei 2017/03/15 10:08:05 Done.
88 }
89
82 # The subset of rtc_base approved for use outside of libjingle. 90 # The subset of rtc_base approved for use outside of libjingle.
83 rtc_static_library("rtc_base_approved") { 91 rtc_static_library("rtc_base_approved") {
84 defines = [] 92 defines = []
85 libs = [] 93 libs = []
86 deps = [] 94 deps = []
87 all_dependent_configs = [ ":rtc_base_approved_all_dependent_config" ] 95 all_dependent_configs = [ ":rtc_base_approved_all_dependent_config" ]
88 96
89 sources = [ 97 sources = [
90 "array_view.h", 98 "array_view.h",
91 "arraysize.h", 99 "arraysize.h",
(...skipping 789 matching lines...) Expand 10 before | Expand all | Expand 10 after
881 889
882 if (is_android) { 890 if (is_android) {
883 android_library("base_java") { 891 android_library("base_java") {
884 java_files = [ 892 java_files = [
885 "java/src/org/webrtc/Logging.java", 893 "java/src/org/webrtc/Logging.java",
886 "java/src/org/webrtc/Size.java", 894 "java/src/org/webrtc/Size.java",
887 "java/src/org/webrtc/ThreadUtils.java", 895 "java/src/org/webrtc/ThreadUtils.java",
888 ] 896 ]
889 } 897 }
890 } 898 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/base/DEPS » ('j') | webrtc/base/protobuf_utils.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698