Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(338)

Side by Side Diff: build/common.gypi

Issue 358863002: Add gyp machinery to build with packed ARM relative relocations. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 1675 matching lines...) Expand 10 before | Expand all | Expand 10 after
1686 'android_ndk_lib': '<(android_ndk_sysroot)/<(android_ndk_lib_dir)', 1686 'android_ndk_lib': '<(android_ndk_sysroot)/<(android_ndk_lib_dir)',
1687 'android_sdk_tools%': '<(android_sdk_tools)', 1687 'android_sdk_tools%': '<(android_sdk_tools)',
1688 'android_sdk%': '<(android_sdk)', 1688 'android_sdk%': '<(android_sdk)',
1689 'android_sdk_jar%': '<(android_sdk)/android.jar', 1689 'android_sdk_jar%': '<(android_sdk)/android.jar',
1690 1690
1691 'android_stlport_root': '<(android_stlport_root)', 1691 'android_stlport_root': '<(android_stlport_root)',
1692 'android_stlport_include': '<(android_stlport_root)/stlport', 1692 'android_stlport_include': '<(android_stlport_root)/stlport',
1693 'android_stlport_libs_dir': '<(android_stlport_root)/libs/<(android_app_ abi)', 1693 'android_stlport_libs_dir': '<(android_stlport_root)/libs/<(android_app_ abi)',
1694 'host_os%': '<(host_os)', 1694 'host_os%': '<(host_os)',
1695 1695
1696 # Location of the "objcopy" binary, used by both gyp and scripts.
1697 'android_objcopy%' : '<!(/bin/echo -n <(android_toolchain)/*-objcopy)',
1698
1696 # Location of the "strip" binary, used by both gyp and scripts. 1699 # Location of the "strip" binary, used by both gyp and scripts.
1697 'android_strip%' : '<!(/bin/echo -n <(android_toolchain)/*-strip)', 1700 'android_strip%' : '<!(/bin/echo -n <(android_toolchain)/*-strip)',
1698 1701
1699 # Location of the "readelf" binary. 1702 # Location of the "readelf" binary.
1700 'android_readelf%' : '<!(/bin/echo -n <(android_toolchain)/*-readelf)', 1703 'android_readelf%' : '<!(/bin/echo -n <(android_toolchain)/*-readelf)',
1701 1704
1702 # Determines whether we should optimize JNI generation at the cost of 1705 # Determines whether we should optimize JNI generation at the cost of
1703 # breaking assumptions in the build system that when inputs have changed 1706 # breaking assumptions in the build system that when inputs have changed
1704 # the outputs should always change as well. This is meant purely for 1707 # the outputs should always change as well. This is meant purely for
1705 # developer builds, to avoid spurious re-linking of native files. 1708 # developer builds, to avoid spurious re-linking of native files.
(...skipping 3805 matching lines...) Expand 10 before | Expand all | Expand 10 after
5511 # settings in target dicts. SYMROOT is a special case, because many other 5514 # settings in target dicts. SYMROOT is a special case, because many other
5512 # Xcode variables depend on it, including variables such as 5515 # Xcode variables depend on it, including variables such as
5513 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5516 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5514 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5517 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5515 # files to appear (when present) in the UI as actual files and not red 5518 # files to appear (when present) in the UI as actual files and not red
5516 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5519 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5517 # and therefore SYMROOT, needs to be set at the project level. 5520 # and therefore SYMROOT, needs to be set at the project level.
5518 'SYMROOT': '<(DEPTH)/xcodebuild', 5521 'SYMROOT': '<(DEPTH)/xcodebuild',
5519 }, 5522 },
5520 } 5523 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698