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

Side by Side Diff: build/common.gypi

Issue 10787018: Add support for libxml as a system library target on iOS (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebased Created 8 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/all.gyp ('k') | third_party/libxml/libxml.gyp » ('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 843 matching lines...) Expand 10 before | Expand all | Expand 10 after
854 }], 854 }],
855 # All Chrome builds have breakpad symbols, but only process the 855 # All Chrome builds have breakpad symbols, but only process the
856 # symbols from official builds. 856 # symbols from official builds.
857 ['(branding=="Chrome" and buildtype=="Official")', { 857 ['(branding=="Chrome" and buildtype=="Official")', {
858 'linux_dump_symbols%': 1, 858 'linux_dump_symbols%': 1,
859 }], 859 }],
860 ], 860 ],
861 }], # os_posix==1 and OS!="mac" and OS!="ios" 861 }], # os_posix==1 and OS!="mac" and OS!="ios"
862 ['OS=="ios"', { 862 ['OS=="ios"', {
863 'disable_nacl%': 1, 863 'disable_nacl%': 1,
864 'use_system_libxml%': 1,
864 }], 865 }],
865 ['OS=="android"', { 866 ['OS=="android"', {
866 # Location of Android NDK. 867 # Location of Android NDK.
867 'variables': { 868 'variables': {
868 'variables': { 869 'variables': {
869 'android_ndk_root%': '<!(/bin/echo -n $ANDROID_NDK_ROOT)', 870 'android_ndk_root%': '<!(/bin/echo -n $ANDROID_NDK_ROOT)',
870 # Android uses x86 instead of ia32 for their target_arch 871 # Android uses x86 instead of ia32 for their target_arch
871 # designation. 872 # designation.
872 # TODO(wistoch): Adjust the target_arch naming scheme to avoid 873 # TODO(wistoch): Adjust the target_arch naming scheme to avoid
873 # confusion. 874 # confusion.
(...skipping 2416 matching lines...) Expand 10 before | Expand all | Expand 10 after
3290 # settings in target dicts. SYMROOT is a special case, because many other 3291 # settings in target dicts. SYMROOT is a special case, because many other
3291 # Xcode variables depend on it, including variables such as 3292 # Xcode variables depend on it, including variables such as
3292 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 3293 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
3293 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 3294 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
3294 # files to appear (when present) in the UI as actual files and not red 3295 # files to appear (when present) in the UI as actual files and not red
3295 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 3296 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
3296 # and therefore SYMROOT, needs to be set at the project level. 3297 # and therefore SYMROOT, needs to be set at the project level.
3297 'SYMROOT': '<(DEPTH)/xcodebuild', 3298 'SYMROOT': '<(DEPTH)/xcodebuild',
3298 }, 3299 },
3299 } 3300 }
OLDNEW
« no previous file with comments | « build/all.gyp ('k') | third_party/libxml/libxml.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698