| 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 3723 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3734 }], | 3734 }], |
| 3735 ['OS=="android" and target_arch!="mipsel" and target_arch!="mips64
el"', { | 3735 ['OS=="android" and target_arch!="mipsel" and target_arch!="mips64
el"', { |
| 3736 # TODO(jdduke) Re-enable on mips after resolving linking | 3736 # TODO(jdduke) Re-enable on mips after resolving linking |
| 3737 # issues with libc++ (crbug.com/456380). | 3737 # issues with libc++ (crbug.com/456380). |
| 3738 'ldflags': [ | 3738 'ldflags': [ |
| 3739 # Warn in case of text relocations. | 3739 # Warn in case of text relocations. |
| 3740 '-Wl,--warn-shared-textrel', | 3740 '-Wl,--warn-shared-textrel', |
| 3741 ], | 3741 ], |
| 3742 }], | 3742 }], |
| 3743 ['OS=="android"', { | 3743 ['OS=="android"', { |
| 3744 'conditions': [ | 3744 'variables': { |
| 3745 ['clang==1', { | 3745 'release_optimize%': 's', |
| 3746 'variables': { | 3746 }, |
| 3747 'release_optimize%': 'z', | |
| 3748 }, | |
| 3749 }, { | |
| 3750 'variables': { | |
| 3751 'release_optimize%': 's', | |
| 3752 }, | |
| 3753 }], | |
| 3754 ], | |
| 3755 }], | 3747 }], |
| 3756 ['profiling==1', { | 3748 ['profiling==1', { |
| 3757 'cflags': [ | 3749 'cflags': [ |
| 3758 '-fno-omit-frame-pointer', | 3750 '-fno-omit-frame-pointer', |
| 3759 '-g', | 3751 '-g', |
| 3760 ], | 3752 ], |
| 3761 'conditions' : [ | 3753 'conditions' : [ |
| 3762 ['profiling_full_stack_frames==1', { | 3754 ['profiling_full_stack_frames==1', { |
| 3763 'cflags': [ | 3755 'cflags': [ |
| 3764 '-fno-inline', | 3756 '-fno-inline', |
| (...skipping 2343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6108 # settings in target dicts. SYMROOT is a special case, because many other | 6100 # settings in target dicts. SYMROOT is a special case, because many other |
| 6109 # Xcode variables depend on it, including variables such as | 6101 # Xcode variables depend on it, including variables such as |
| 6110 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6102 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 6111 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6103 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 6112 # files to appear (when present) in the UI as actual files and not red | 6104 # files to appear (when present) in the UI as actual files and not red |
| 6113 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6105 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 6114 # and therefore SYMROOT, needs to be set at the project level. | 6106 # and therefore SYMROOT, needs to be set at the project level. |
| 6115 'SYMROOT': '<(DEPTH)/xcodebuild', | 6107 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 6116 }, | 6108 }, |
| 6117 } | 6109 } |
| OLD | NEW |