OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # IMPORTANT: | 5 # IMPORTANT: |
6 # Please don't directly include this file if you are building via gyp_chromium, | 6 # Please don't directly include this file if you are building via gyp_chromium, |
7 # since gyp_chromium is automatically forcing its inclusion. | 7 # since gyp_chromium is automatically forcing its inclusion. |
8 { | 8 { |
9 # Variables expected to be overriden on the GYP command line (-D) or by | 9 # Variables expected to be overriden on the GYP command line (-D) or by |
10 # ~/.gyp/include.gypi. | 10 # ~/.gyp/include.gypi. |
(...skipping 1087 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1098 'defines': ['ENABLE_PROFILING=1'], | 1098 'defines': ['ENABLE_PROFILING=1'], |
1099 }], | 1099 }], |
1100 ['OS=="linux" and glibcxx_debug==1', { | 1100 ['OS=="linux" and glibcxx_debug==1', { |
1101 'defines': ['_GLIBCXX_DEBUG=1',], | 1101 'defines': ['_GLIBCXX_DEBUG=1',], |
1102 'cflags_cc!': ['-fno-rtti'], | 1102 'cflags_cc!': ['-fno-rtti'], |
1103 'cflags_cc+': ['-frtti', '-g'], | 1103 'cflags_cc+': ['-frtti', '-g'], |
1104 }], | 1104 }], |
1105 ['remoting==1', { | 1105 ['remoting==1', { |
1106 'defines': ['ENABLE_REMOTING=1'], | 1106 'defines': ['ENABLE_REMOTING=1'], |
1107 }], | 1107 }], |
| 1108 ['enable_webrtc==1', { |
| 1109 'defines': ['ENABLE_WEBRTC=1'], |
| 1110 }], |
1108 ['p2p_apis==1', { | 1111 ['p2p_apis==1', { |
1109 'defines': ['ENABLE_P2P_APIS=1'], | 1112 'defines': ['ENABLE_P2P_APIS=1'], |
1110 }], | 1113 }], |
1111 ['proprietary_codecs==1', { | 1114 ['proprietary_codecs==1', { |
1112 'defines': ['USE_PROPRIETARY_CODECS'], | 1115 'defines': ['USE_PROPRIETARY_CODECS'], |
1113 }], | 1116 }], |
1114 ['enable_flapper_hacks==1', { | 1117 ['enable_flapper_hacks==1', { |
1115 'defines': ['ENABLE_FLAPPER_HACKS=1'], | 1118 'defines': ['ENABLE_FLAPPER_HACKS=1'], |
1116 }], | 1119 }], |
1117 ['enable_pepper_threading==1', { | 1120 ['enable_pepper_threading==1', { |
(...skipping 1669 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2787 # settings in target dicts. SYMROOT is a special case, because many other | 2790 # settings in target dicts. SYMROOT is a special case, because many other |
2788 # Xcode variables depend on it, including variables such as | 2791 # Xcode variables depend on it, including variables such as |
2789 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 2792 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
2790 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 2793 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
2791 # files to appear (when present) in the UI as actual files and not red | 2794 # files to appear (when present) in the UI as actual files and not red |
2792 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 2795 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
2793 # and therefore SYMROOT, needs to be set at the project level. | 2796 # and therefore SYMROOT, needs to be set at the project level. |
2794 'SYMROOT': '<(DEPTH)/xcodebuild', | 2797 'SYMROOT': '<(DEPTH)/xcodebuild', |
2795 }, | 2798 }, |
2796 } | 2799 } |
OLD | NEW |