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 1600 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1611 'variables': { | 1611 'variables': { |
1612 # Unfortunately we have to use absolute paths to the SDK/NDK because | 1612 # Unfortunately we have to use absolute paths to the SDK/NDK because |
1613 # they're passed to ant which uses a different relative path from | 1613 # they're passed to ant which uses a different relative path from |
1614 # gyp. | 1614 # gyp. |
1615 'android_ndk_root%': '<!(cd <(DEPTH) && pwd -P)/third_party/android_
tools/ndk/', | 1615 'android_ndk_root%': '<!(cd <(DEPTH) && pwd -P)/third_party/android_
tools/ndk/', |
1616 'android_ndk_experimental_root%': '<!(cd <(DEPTH) && pwd -P)/third_p
arty/android_tools/ndk_experimental/', | 1616 'android_ndk_experimental_root%': '<!(cd <(DEPTH) && pwd -P)/third_p
arty/android_tools/ndk_experimental/', |
1617 'android_sdk_root%': '<!(cd <(DEPTH) && pwd -P)/third_party/android_
tools/sdk/', | 1617 'android_sdk_root%': '<!(cd <(DEPTH) && pwd -P)/third_party/android_
tools/sdk/', |
1618 'android_host_arch%': '<!(uname -m)', | 1618 'android_host_arch%': '<!(uname -m)', |
1619 # Android API-level of the SDK used for compilation. | 1619 # Android API-level of the SDK used for compilation. |
1620 'android_sdk_version%': '19', | 1620 'android_sdk_version%': '19', |
1621 'android_sdk_build_tools_version%': '19.0.0', | 1621 'android_sdk_build_tools_version%': '20.0.0', |
1622 'host_os%': "<!(uname -s | sed -e 's/Linux/linux/;s/Darwin/mac/')", | 1622 'host_os%': "<!(uname -s | sed -e 's/Linux/linux/;s/Darwin/mac/')", |
1623 }, | 1623 }, |
1624 # Copy conditionally-set variables out one scope. | 1624 # Copy conditionally-set variables out one scope. |
1625 'android_ndk_root%': '<(android_ndk_root)', | 1625 'android_ndk_root%': '<(android_ndk_root)', |
1626 'android_sdk_root%': '<(android_sdk_root)', | 1626 'android_sdk_root%': '<(android_sdk_root)', |
1627 'android_sdk_version%': '<(android_sdk_version)', | 1627 'android_sdk_version%': '<(android_sdk_version)', |
1628 'android_stlport_root': '<(android_ndk_root)/sources/cxx-stl/stlport', | 1628 'android_stlport_root': '<(android_ndk_root)/sources/cxx-stl/stlport', |
1629 'host_os%': '<(host_os)', | 1629 'host_os%': '<(host_os)', |
1630 | 1630 |
1631 'android_sdk%': '<(android_sdk_root)/platforms/android-<(android_sdk_v
ersion)', | 1631 'android_sdk%': '<(android_sdk_root)/platforms/android-<(android_sdk_v
ersion)', |
(...skipping 3984 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5616 # settings in target dicts. SYMROOT is a special case, because many other | 5616 # settings in target dicts. SYMROOT is a special case, because many other |
5617 # Xcode variables depend on it, including variables such as | 5617 # Xcode variables depend on it, including variables such as |
5618 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5618 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5619 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5619 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5620 # files to appear (when present) in the UI as actual files and not red | 5620 # files to appear (when present) in the UI as actual files and not red |
5621 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5621 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5622 # and therefore SYMROOT, needs to be set at the project level. | 5622 # and therefore SYMROOT, needs to be set at the project level. |
5623 'SYMROOT': '<(DEPTH)/xcodebuild', | 5623 'SYMROOT': '<(DEPTH)/xcodebuild', |
5624 }, | 5624 }, |
5625 } | 5625 } |
OLD | NEW |