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 2572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2583 }], | 2583 }], |
2584 ['remoting==1', { | 2584 ['remoting==1', { |
2585 'defines': ['ENABLE_REMOTING=1'], | 2585 'defines': ['ENABLE_REMOTING=1'], |
2586 }], | 2586 }], |
2587 ['enable_webrtc==1', { | 2587 ['enable_webrtc==1', { |
2588 'defines': ['ENABLE_WEBRTC=1'], | 2588 'defines': ['ENABLE_WEBRTC=1'], |
2589 }], | 2589 }], |
2590 ['proprietary_codecs==1', { | 2590 ['proprietary_codecs==1', { |
2591 'defines': ['USE_PROPRIETARY_CODECS'], | 2591 'defines': ['USE_PROPRIETARY_CODECS'], |
2592 }], | 2592 }], |
2593 ['enable_mpeg2ts_stream_parser==1', { | |
wolenetz
2014/08/22 19:53:17
In old media.gyp, the 'media' target's inspection
damienv1
2014/08/26 14:43:20
Both are equivalent from a build point of view sin
| |
2594 'defines': ['ENABLE_MPEG2TS_STREAM_PARSER'], | |
2595 }], | |
2593 ['enable_viewport==1', { | 2596 ['enable_viewport==1', { |
2594 'defines': ['ENABLE_VIEWPORT'], | 2597 'defines': ['ENABLE_VIEWPORT'], |
2595 }], | 2598 }], |
2596 ['enable_pepper_cdms==1', { | 2599 ['enable_pepper_cdms==1', { |
2597 'defines': ['ENABLE_PEPPER_CDMS'], | 2600 'defines': ['ENABLE_PEPPER_CDMS'], |
2598 }], | 2601 }], |
2599 ['enable_browser_cdms==1', { | 2602 ['enable_browser_cdms==1', { |
2600 'defines': ['ENABLE_BROWSER_CDMS'], | 2603 'defines': ['ENABLE_BROWSER_CDMS'], |
2601 }], | 2604 }], |
2602 ['configuration_policy==1', { | 2605 ['configuration_policy==1', { |
(...skipping 3101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
5704 # settings in target dicts. SYMROOT is a special case, because many other | 5707 # settings in target dicts. SYMROOT is a special case, because many other |
5705 # Xcode variables depend on it, including variables such as | 5708 # Xcode variables depend on it, including variables such as |
5706 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5709 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5707 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5710 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5708 # files to appear (when present) in the UI as actual files and not red | 5711 # files to appear (when present) in the UI as actual files and not red |
5709 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5712 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5710 # and therefore SYMROOT, needs to be set at the project level. | 5713 # and therefore SYMROOT, needs to be set at the project level. |
5711 'SYMROOT': '<(DEPTH)/xcodebuild', | 5714 'SYMROOT': '<(DEPTH)/xcodebuild', |
5712 }, | 5715 }, |
5713 } | 5716 } |
OLD | NEW |