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 1480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1491 'variables': { | 1491 'variables': { |
1492 # Unfortunately we have to use absolute paths to the SDK/NDK because | 1492 # Unfortunately we have to use absolute paths to the SDK/NDK because |
1493 # they're passed to ant which uses a different relative path from | 1493 # they're passed to ant which uses a different relative path from |
1494 # gyp. | 1494 # gyp. |
1495 'android_ndk_root%': '<!(cd <(DEPTH) && pwd -P)/third_party/android_
tools/ndk/', | 1495 'android_ndk_root%': '<!(cd <(DEPTH) && pwd -P)/third_party/android_
tools/ndk/', |
1496 'android_ndk_experimental_root%': '<!(cd <(DEPTH) && pwd -P)/third_p
arty/android_tools/ndk_experimental/', | 1496 'android_ndk_experimental_root%': '<!(cd <(DEPTH) && pwd -P)/third_p
arty/android_tools/ndk_experimental/', |
1497 'android_sdk_root%': '<!(cd <(DEPTH) && pwd -P)/third_party/android_
tools/sdk/', | 1497 'android_sdk_root%': '<!(cd <(DEPTH) && pwd -P)/third_party/android_
tools/sdk/', |
1498 'android_host_arch%': '<!(uname -m)', | 1498 'android_host_arch%': '<!(uname -m)', |
1499 # Android API-level of the SDK used for compilation. | 1499 # Android API-level of the SDK used for compilation. |
1500 'android_sdk_version%': '19', | 1500 'android_sdk_version%': '19', |
1501 'android_sdk_build_tools_version%': '19.0.0', | 1501 'android_sdk_build_tools_version%': '18.0.1', |
1502 'host_os%': "<!(uname -s | sed -e 's/Linux/linux/;s/Darwin/mac/')", | 1502 'host_os%': "<!(uname -s | sed -e 's/Linux/linux/;s/Darwin/mac/')", |
1503 }, | 1503 }, |
1504 # Copy conditionally-set variables out one scope. | 1504 # Copy conditionally-set variables out one scope. |
1505 'android_ndk_root%': '<(android_ndk_root)', | 1505 'android_ndk_root%': '<(android_ndk_root)', |
1506 'android_sdk_root%': '<(android_sdk_root)', | 1506 'android_sdk_root%': '<(android_sdk_root)', |
1507 'android_sdk_version%': '<(android_sdk_version)', | 1507 'android_sdk_version%': '<(android_sdk_version)', |
1508 'android_stlport_root': '<(android_ndk_root)/sources/cxx-stl/stlport', | 1508 'android_stlport_root': '<(android_ndk_root)/sources/cxx-stl/stlport', |
1509 'host_os%': '<(host_os)', | 1509 'host_os%': '<(host_os)', |
1510 | 1510 |
1511 'android_sdk%': '<(android_sdk_root)/platforms/android-<(android_sdk_v
ersion)', | 1511 'android_sdk%': '<(android_sdk_root)/platforms/android-<(android_sdk_v
ersion)', |
(...skipping 3717 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5229 # settings in target dicts. SYMROOT is a special case, because many other | 5229 # settings in target dicts. SYMROOT is a special case, because many other |
5230 # Xcode variables depend on it, including variables such as | 5230 # Xcode variables depend on it, including variables such as |
5231 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5231 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5232 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5232 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5233 # files to appear (when present) in the UI as actual files and not red | 5233 # files to appear (when present) in the UI as actual files and not red |
5234 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5234 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5235 # and therefore SYMROOT, needs to be set at the project level. | 5235 # and therefore SYMROOT, needs to be set at the project level. |
5236 'SYMROOT': '<(DEPTH)/xcodebuild', | 5236 'SYMROOT': '<(DEPTH)/xcodebuild', |
5237 }, | 5237 }, |
5238 } | 5238 } |
OLD | NEW |