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

Unified Diff: webrtc/base/BUILD.gn

Issue 1467173006: Create webrtc/base/objc and move some logging code there (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Add ARC flag Created 5 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « PRESUBMIT.py ('k') | webrtc/base/base.gyp » ('j') | webrtc/base/base.gyp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/BUILD.gn
diff --git a/webrtc/base/BUILD.gn b/webrtc/base/BUILD.gn
index db762250a3061da5dcff275fd47ab2f7d5f47d3a..236efc7b02b40e0c7e696c6c07856813a46bd101 100644
--- a/webrtc/base/BUILD.gn
+++ b/webrtc/base/BUILD.gn
@@ -605,3 +605,19 @@ static_library("rtc_base") {
defines += [ "timezone=_timezone" ]
}
}
+
+if (is_ios) {
+ static_library("rtc_base_objc") {
kjellander_webrtc 2015/11/26 08:36:16 I believe GN prefers source_set unless static_libr
+ deps = [
+ ":rtc_base",
+ ]
+ cflags = [ "-fobjc-arc" ]
+ configs += [ "..:common_config" ]
+ public_configs = [ "..:common_inherited_config" ]
+
+ sources = [
+ "objc/RTCLogging.h",
+ "objc/RTCLogging.mm",
+ ]
+ }
+}
« no previous file with comments | « PRESUBMIT.py ('k') | webrtc/base/base.gyp » ('j') | webrtc/base/base.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698