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

Side by Side Diff: webrtc/sdk/sdk.gypi

Issue 1903663002: Build dynamic iOS SDK. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 8 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
OLDNEW
(Empty)
1 # Copyright 2016 The WebRTC project authors. All Rights Reserved.
2 #
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
5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree.
8
9 {
10 'target_defaults': {
11 'configurations': {
12 'Profile': {
13 'xcode_settings': {
14 'DEBUG_INFORMARTION_FORMAT': 'dwarf-with-dsym',
15 # We manually strip using strip -S and strip -x. We need to run
16 # dsymutil ourselves so we need symbols around before that.
17 'DEPLOYMENT_POSTPROCESSING': 'NO',
18 'GCC_OPTIMIZATION_LEVEL': 's',
19 'GCC_SYMBOLS_PRIVATE_EXTERN': 'YES',
20 'STRIP_INSTALLED_PRODUCT': 'NO',
21 'USE_HEADERMAP': 'YES',
22 },
23 },
24 },
25 },
26 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698