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 1369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1380 'android_stlport_root': '<(android_stlport_root)', | 1380 'android_stlport_root': '<(android_stlport_root)', |
1381 'android_stlport_include': '<(android_stlport_root)/stlport', | 1381 'android_stlport_include': '<(android_stlport_root)/stlport', |
1382 'android_stlport_libs_dir': '<(android_stlport_root)/libs/<(android_app_
abi)', | 1382 'android_stlport_libs_dir': '<(android_stlport_root)/libs/<(android_app_
abi)', |
1383 | 1383 |
1384 # Location of the "strip" binary, used by both gyp and scripts. | 1384 # Location of the "strip" binary, used by both gyp and scripts. |
1385 'android_strip%' : '<!(/bin/echo -n <(android_toolchain)/*-strip)', | 1385 'android_strip%' : '<!(/bin/echo -n <(android_toolchain)/*-strip)', |
1386 | 1386 |
1387 # Location of the "readelf" binary. | 1387 # Location of the "readelf" binary. |
1388 'android_readelf%' : '<!(/bin/echo -n <(android_toolchain)/*-readelf)', | 1388 'android_readelf%' : '<!(/bin/echo -n <(android_toolchain)/*-readelf)', |
1389 | 1389 |
1390 # Provides an absolute path to PRODUCT_DIR (e.g. out/Release). Used | |
1391 # to specify the output directory for Ant in the Android build. | |
1392 'ant_build_out': '`cd <(PRODUCT_DIR) && pwd -P`', | |
1393 | |
1394 # Determines whether we should optimize JNI generation at the cost of | 1390 # Determines whether we should optimize JNI generation at the cost of |
1395 # breaking assumptions in the build system that when inputs have changed | 1391 # breaking assumptions in the build system that when inputs have changed |
1396 # the outputs should always change as well. This is meant purely for | 1392 # the outputs should always change as well. This is meant purely for |
1397 # developer builds, to avoid spurious re-linking of native files. | 1393 # developer builds, to avoid spurious re-linking of native files. |
1398 'optimize_jni_generation%': 0, | 1394 'optimize_jni_generation%': 0, |
1399 | 1395 |
1400 # Always uses openssl. | 1396 # Always uses openssl. |
1401 'use_openssl%': 1, | 1397 'use_openssl%': 1, |
1402 | 1398 |
1403 'proprietary_codecs%': '<(proprietary_codecs)', | 1399 'proprietary_codecs%': '<(proprietary_codecs)', |
(...skipping 3341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4745 # settings in target dicts. SYMROOT is a special case, because many other | 4741 # settings in target dicts. SYMROOT is a special case, because many other |
4746 # Xcode variables depend on it, including variables such as | 4742 # Xcode variables depend on it, including variables such as |
4747 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4743 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4748 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4744 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4749 # files to appear (when present) in the UI as actual files and not red | 4745 # files to appear (when present) in the UI as actual files and not red |
4750 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4746 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4751 # and therefore SYMROOT, needs to be set at the project level. | 4747 # and therefore SYMROOT, needs to be set at the project level. |
4752 'SYMROOT': '<(DEPTH)/xcodebuild', | 4748 'SYMROOT': '<(DEPTH)/xcodebuild', |
4753 }, | 4749 }, |
4754 } | 4750 } |
OLD | NEW |