| 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 1530 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1541 }], | 1541 }], |
| 1542 ], | 1542 ], |
| 1543 'android_gdbserver%': '<(android_ndk_root)/prebuilt/android-arm/gd
bserver/gdbserver', | 1543 'android_gdbserver%': '<(android_ndk_root)/prebuilt/android-arm/gd
bserver/gdbserver', |
| 1544 'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-14/
arch-arm', | 1544 'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-14/
arch-arm', |
| 1545 'android_toolchain%': '<(android_ndk_root)/toolchains/arm-linux-an
droideabi-4.6/prebuilt/<(host_os)-<(android_host_arch)/bin', | 1545 'android_toolchain%': '<(android_ndk_root)/toolchains/arm-linux-an
droideabi-4.6/prebuilt/<(host_os)-<(android_host_arch)/bin', |
| 1546 }], | 1546 }], |
| 1547 ['target_arch == "arm64"', { | 1547 ['target_arch == "arm64"', { |
| 1548 'android_app_abi%': 'arm64-v8a', | 1548 'android_app_abi%': 'arm64-v8a', |
| 1549 'android_gdbserver%': '<(android_ndk_experimental_root)/prebuilt/a
ndroid-arm64/gdbserver/gdbserver', | 1549 'android_gdbserver%': '<(android_ndk_experimental_root)/prebuilt/a
ndroid-arm64/gdbserver/gdbserver', |
| 1550 'android_ndk_sysroot%': '<(android_ndk_experimental_root)/platform
s/android-20/arch-arm64', | 1550 'android_ndk_sysroot%': '<(android_ndk_experimental_root)/platform
s/android-20/arch-arm64', |
| 1551 'android_toolchain%': '<(android_ndk_experimental_root)/toolchains
/aarch64-linux-android-4.8/prebuilt/<(host_os)-<(android_host_arch)/bin', | 1551 'android_toolchain%': '<(android_ndk_experimental_root)/toolchains
/aarch64-linux-android-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin', |
| 1552 'android_stlport_root': '<(android_ndk_experimental_root)/sources/
cxx-stl/stlport', | 1552 'android_stlport_root': '<(android_ndk_experimental_root)/sources/
cxx-stl/stlport', |
| 1553 }], | 1553 }], |
| 1554 ['target_arch == "mipsel"', { | 1554 ['target_arch == "mipsel"', { |
| 1555 'android_app_abi%': 'mips', | 1555 'android_app_abi%': 'mips', |
| 1556 'android_gdbserver%': '<(android_ndk_root)/prebuilt/android-mips/g
dbserver/gdbserver', | 1556 'android_gdbserver%': '<(android_ndk_root)/prebuilt/android-mips/g
dbserver/gdbserver', |
| 1557 'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-14/
arch-mips', | 1557 'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-14/
arch-mips', |
| 1558 'android_toolchain%': '<(android_ndk_root)/toolchains/mipsel-linux
-android-4.6/prebuilt/<(host_os)-<(android_host_arch)/bin', | 1558 'android_toolchain%': '<(android_ndk_root)/toolchains/mipsel-linux
-android-4.6/prebuilt/<(host_os)-<(android_host_arch)/bin', |
| 1559 }], | 1559 }], |
| 1560 ], | 1560 ], |
| 1561 }, | 1561 }, |
| (...skipping 3658 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5220 # settings in target dicts. SYMROOT is a special case, because many other | 5220 # settings in target dicts. SYMROOT is a special case, because many other |
| 5221 # Xcode variables depend on it, including variables such as | 5221 # Xcode variables depend on it, including variables such as |
| 5222 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5222 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 5223 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5223 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 5224 # files to appear (when present) in the UI as actual files and not red | 5224 # files to appear (when present) in the UI as actual files and not red |
| 5225 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5225 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 5226 # and therefore SYMROOT, needs to be set at the project level. | 5226 # and therefore SYMROOT, needs to be set at the project level. |
| 5227 'SYMROOT': '<(DEPTH)/xcodebuild', | 5227 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 5228 }, | 5228 }, |
| 5229 } | 5229 } |
| OLD | NEW |