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

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: Call MakeDirectory() on output dir 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
« no previous file with comments | « build/android/pack_arm_relocations.gypi ('k') | build/java_apk.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1685 matching lines...) Expand 10 before | Expand all | Expand 10 after
1696 'android_ndk_lib': '<(android_ndk_sysroot)/<(android_ndk_lib_dir)', 1696 'android_ndk_lib': '<(android_ndk_sysroot)/<(android_ndk_lib_dir)',
1697 'android_sdk_tools%': '<(android_sdk_tools)', 1697 'android_sdk_tools%': '<(android_sdk_tools)',
1698 'android_sdk%': '<(android_sdk)', 1698 'android_sdk%': '<(android_sdk)',
1699 'android_sdk_jar%': '<(android_sdk)/android.jar', 1699 'android_sdk_jar%': '<(android_sdk)/android.jar',
1700 1700
1701 'android_stlport_root': '<(android_stlport_root)', 1701 'android_stlport_root': '<(android_stlport_root)',
1702 'android_stlport_include': '<(android_stlport_root)/stlport', 1702 'android_stlport_include': '<(android_stlport_root)/stlport',
1703 'android_stlport_libs_dir': '<(android_stlport_root)/libs/<(android_app_ abi)', 1703 'android_stlport_libs_dir': '<(android_stlport_root)/libs/<(android_app_ abi)',
1704 'host_os%': '<(host_os)', 1704 'host_os%': '<(host_os)',
1705 1705
1706 # Location of the "objcopy" binary, used by both gyp and scripts.
1707 'android_objcopy%' : '<!(/bin/echo -n <(android_toolchain)/*-objcopy)',
1708
1706 # Location of the "strip" binary, used by both gyp and scripts. 1709 # Location of the "strip" binary, used by both gyp and scripts.
1707 'android_strip%' : '<!(/bin/echo -n <(android_toolchain)/*-strip)', 1710 'android_strip%' : '<!(/bin/echo -n <(android_toolchain)/*-strip)',
1708 1711
1709 # Location of the "readelf" binary. 1712 # Location of the "readelf" binary.
1710 'android_readelf%' : '<!(/bin/echo -n <(android_toolchain)/*-readelf)', 1713 'android_readelf%' : '<!(/bin/echo -n <(android_toolchain)/*-readelf)',
1711 1714
1712 # Determines whether we should optimize JNI generation at the cost of 1715 # Determines whether we should optimize JNI generation at the cost of
1713 # breaking assumptions in the build system that when inputs have changed 1716 # breaking assumptions in the build system that when inputs have changed
1714 # the outputs should always change as well. This is meant purely for 1717 # the outputs should always change as well. This is meant purely for
1715 # developer builds, to avoid spurious re-linking of native files. 1718 # developer builds, to avoid spurious re-linking of native files.
(...skipping 3898 matching lines...) Expand 10 before | Expand all | Expand 10 after
5614 # settings in target dicts. SYMROOT is a special case, because many other 5617 # settings in target dicts. SYMROOT is a special case, because many other
5615 # Xcode variables depend on it, including variables such as 5618 # Xcode variables depend on it, including variables such as
5616 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5619 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5617 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5620 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5618 # files to appear (when present) in the UI as actual files and not red 5621 # files to appear (when present) in the UI as actual files and not red
5619 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5622 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5620 # and therefore SYMROOT, needs to be set at the project level. 5623 # and therefore SYMROOT, needs to be set at the project level.
5621 'SYMROOT': '<(DEPTH)/xcodebuild', 5624 'SYMROOT': '<(DEPTH)/xcodebuild',
5622 }, 5625 },
5623 } 5626 }
OLDNEW
« no previous file with comments | « build/android/pack_arm_relocations.gypi ('k') | build/java_apk.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698