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 1685 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1696 'android_ndk_lib': '<(android_ndk_sysroot)/<(android_ndk_lib_dir)', | 1696 'android_ndk_lib': '<(android_ndk_sysroot)/<(android_ndk_lib_dir)', |
1697 'android_sdk_tools%': '<(android_sdk_tools)', | 1697 'android_sdk_tools%': '<(android_sdk_tools)', |
1698 'android_sdk%': '<(android_sdk)', | 1698 'android_sdk%': '<(android_sdk)', |
1699 'android_sdk_jar%': '<(android_sdk)/android.jar', | 1699 'android_sdk_jar%': '<(android_sdk)/android.jar', |
1700 | 1700 |
1701 'android_stlport_root': '<(android_stlport_root)', | 1701 'android_stlport_root': '<(android_stlport_root)', |
1702 'android_stlport_include': '<(android_stlport_root)/stlport', | 1702 'android_stlport_include': '<(android_stlport_root)/stlport', |
1703 'android_stlport_libs_dir': '<(android_stlport_root)/libs/<(android_app_
abi)', | 1703 'android_stlport_libs_dir': '<(android_stlport_root)/libs/<(android_app_
abi)', |
1704 'host_os%': '<(host_os)', | 1704 'host_os%': '<(host_os)', |
1705 | 1705 |
| 1706 # Location of the "objcopy" binary, used by both gyp and scripts. |
| 1707 'android_objcopy%' : '<!(/bin/echo -n <(android_toolchain)/*-objcopy)', |
| 1708 |
1706 # Location of the "strip" binary, used by both gyp and scripts. | 1709 # Location of the "strip" binary, used by both gyp and scripts. |
1707 'android_strip%' : '<!(/bin/echo -n <(android_toolchain)/*-strip)', | 1710 'android_strip%' : '<!(/bin/echo -n <(android_toolchain)/*-strip)', |
1708 | 1711 |
1709 # Location of the "readelf" binary. | 1712 # Location of the "readelf" binary. |
1710 'android_readelf%' : '<!(/bin/echo -n <(android_toolchain)/*-readelf)', | 1713 'android_readelf%' : '<!(/bin/echo -n <(android_toolchain)/*-readelf)', |
1711 | 1714 |
1712 # Determines whether we should optimize JNI generation at the cost of | 1715 # Determines whether we should optimize JNI generation at the cost of |
1713 # breaking assumptions in the build system that when inputs have changed | 1716 # breaking assumptions in the build system that when inputs have changed |
1714 # the outputs should always change as well. This is meant purely for | 1717 # the outputs should always change as well. This is meant purely for |
1715 # developer builds, to avoid spurious re-linking of native files. | 1718 # developer builds, to avoid spurious re-linking of native files. |
(...skipping 3898 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5614 # settings in target dicts. SYMROOT is a special case, because many other | 5617 # settings in target dicts. SYMROOT is a special case, because many other |
5615 # Xcode variables depend on it, including variables such as | 5618 # Xcode variables depend on it, including variables such as |
5616 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5619 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5617 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5620 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5618 # files to appear (when present) in the UI as actual files and not red | 5621 # files to appear (when present) in the UI as actual files and not red |
5619 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5622 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5620 # and therefore SYMROOT, needs to be set at the project level. | 5623 # and therefore SYMROOT, needs to be set at the project level. |
5621 'SYMROOT': '<(DEPTH)/xcodebuild', | 5624 'SYMROOT': '<(DEPTH)/xcodebuild', |
5622 }, | 5625 }, |
5623 } | 5626 } |
OLD | NEW |