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..10d3197b4a10695ffbe34f8115ebf432126b727b 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 || is_mac) { |
+ source_set("rtc_api_objc") { |
+ deps = [ |
+ "//webrtc/base:rtc_base_objc", |
+ ] |
+ cflags = [ |
+ "-fobjc-arc", |
+ "-Wobjc-missing-property-synthesis", |
+ ] |
+ sources = [ |
+ "objc/Prefix.pch", |
tkchin_webrtc
2015/12/08 19:04:01
nit: Rename this to WebRTC-Prefix.pch
In a subseq
hjon
2015/12/08 19:31:21
Done.
|
+ "objc/RTCIceServer+Private.h", |
+ "objc/RTCIceServer.h", |
+ "objc/RTCIceServer.mm", |
+ ] |
+ } |
} |