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 1496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1507 'variables': { | 1507 'variables': { |
1508 # Unfortunately we have to use absolute paths to the SDK/NDK because | 1508 # Unfortunately we have to use absolute paths to the SDK/NDK because |
1509 # they're passed to ant which uses a different relative path from | 1509 # they're passed to ant which uses a different relative path from |
1510 # gyp. | 1510 # gyp. |
1511 'android_ndk_root%': '<!(cd <(DEPTH) && pwd -P)/third_party/android_ tools/ndk/', | 1511 'android_ndk_root%': '<!(cd <(DEPTH) && pwd -P)/third_party/android_ tools/ndk/', |
1512 'android_ndk_experimental_root%': '<!(cd <(DEPTH) && pwd -P)/third_p arty/android_tools/ndk_experimental/', | 1512 'android_ndk_experimental_root%': '<!(cd <(DEPTH) && pwd -P)/third_p arty/android_tools/ndk_experimental/', |
1513 'android_sdk_root%': '<!(cd <(DEPTH) && pwd -P)/third_party/android_ tools/sdk/', | 1513 'android_sdk_root%': '<!(cd <(DEPTH) && pwd -P)/third_party/android_ tools/sdk/', |
1514 'android_host_arch%': '<!(uname -m)', | 1514 'android_host_arch%': '<!(uname -m)', |
1515 # Android API-level of the SDK used for compilation. | 1515 # Android API-level of the SDK used for compilation. |
1516 'android_sdk_version%': '19', | 1516 'android_sdk_version%': '19', |
1517 'android_sdk_build_tools_version%': '19.0.0', | 1517 'android_sdk_build_tools_version%': '18.0.1', |
bulach
2014/04/17 13:15:42
nit: left over? :)
qsr
2014/04/17 13:50:24
Done.
| |
1518 'host_os%': "<!(uname -s | sed -e 's/Linux/linux/;s/Darwin/mac/')", | 1518 'host_os%': "<!(uname -s | sed -e 's/Linux/linux/;s/Darwin/mac/')", |
1519 }, | 1519 }, |
1520 # Copy conditionally-set variables out one scope. | 1520 # Copy conditionally-set variables out one scope. |
1521 'android_ndk_root%': '<(android_ndk_root)', | 1521 'android_ndk_root%': '<(android_ndk_root)', |
1522 'android_sdk_root%': '<(android_sdk_root)', | 1522 'android_sdk_root%': '<(android_sdk_root)', |
1523 'android_sdk_version%': '<(android_sdk_version)', | 1523 'android_sdk_version%': '<(android_sdk_version)', |
1524 'android_stlport_root': '<(android_ndk_root)/sources/cxx-stl/stlport', | 1524 'android_stlport_root': '<(android_ndk_root)/sources/cxx-stl/stlport', |
1525 'host_os%': '<(host_os)', | 1525 'host_os%': '<(host_os)', |
1526 | 1526 |
1527 'android_sdk%': '<(android_sdk_root)/platforms/android-<(android_sdk_v ersion)', | 1527 'android_sdk%': '<(android_sdk_root)/platforms/android-<(android_sdk_v ersion)', |
(...skipping 3696 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
5224 # settings in target dicts. SYMROOT is a special case, because many other | 5224 # settings in target dicts. SYMROOT is a special case, because many other |
5225 # Xcode variables depend on it, including variables such as | 5225 # Xcode variables depend on it, including variables such as |
5226 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5226 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5227 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5227 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5228 # files to appear (when present) in the UI as actual files and not red | 5228 # files to appear (when present) in the UI as actual files and not red |
5229 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5229 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5230 # and therefore SYMROOT, needs to be set at the project level. | 5230 # and therefore SYMROOT, needs to be set at the project level. |
5231 'SYMROOT': '<(DEPTH)/xcodebuild', | 5231 'SYMROOT': '<(DEPTH)/xcodebuild', |
5232 }, | 5232 }, |
5233 } | 5233 } |
OLD | NEW |