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

Unified Diff: webrtc/api/BUILD.gn

Issue 1499653003: Add implementation and tests for RTCIceServer (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Remove Mac from webrtc_tests Created 5 years 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 | « no previous file | webrtc/api/OWNERS » ('j') | webrtc/api/api.gyp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/api/BUILD.gn
diff --git a/tools/gritsettings/resource_ids b/webrtc/api/BUILD.gn
similarity index 51%
copy from tools/gritsettings/resource_ids
copy to webrtc/api/BUILD.gn
index bfdfbbe90b029e4c8c316a800fe528f445b694fb..37109a1f78ae6d40f5e595c1af09da2876138dde 100644
--- a/tools/gritsettings/resource_ids
+++ b/webrtc/api/BUILD.gn
@@ -6,10 +6,22 @@
# in the file PATENTS. All contributing project authors may
# be found in the AUTHORS file in the root of the source tree.
-{
- "SRCDIR": "../..",
+import("../build/webrtc.gni")
- "chromium/src/net/base/net_resources.grd": {
- "includes": [4000],
- },
+if (is_ios) {
+ source_set("rtc_api_objc") {
+ deps = [
+ "//webrtc/base:rtc_base_objc",
+ ]
+ cflags = [
+ "-fobjc-arc",
+ "-Wobjc-missing-property-synthesis",
+ ]
+ sources = [
+ "objc/RTCIceServer+Private.h",
+ "objc/RTCIceServer.h",
+ "objc/RTCIceServer.mm",
+ "objc/WebRTC-Prefix.pch",
+ ]
+ }
}
« no previous file with comments | « no previous file | webrtc/api/OWNERS » ('j') | webrtc/api/api.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698