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

Side by Side Diff: build/common.gypi

Issue 14472005: Fix dependency tree when using the system ICU. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add proper default for use_system_icu Created 7 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | ui/ui.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 783 matching lines...) Expand 10 before | Expand all | Expand 10 after
794 794
795 # Use system nspr instead of the bundled one. 795 # Use system nspr instead of the bundled one.
796 'use_system_nspr%': 0, 796 'use_system_nspr%': 0,
797 797
798 # Use system protobuf instead of bundled one. 798 # Use system protobuf instead of bundled one.
799 'use_system_protobuf%': 0, 799 'use_system_protobuf%': 0,
800 800
801 # Use system yasm instead of bundled one. 801 # Use system yasm instead of bundled one.
802 'use_system_yasm%': 0, 802 'use_system_yasm%': 0,
803 803
804 # Use system ICU instead of bundled one.
805 'use_system_icu%' : 0,
806
804 # Default to enabled PIE; this is important for ASLR but we may need to be 807 # Default to enabled PIE; this is important for ASLR but we may need to be
805 # able to turn it off for various reasons. 808 # able to turn it off for various reasons.
806 'linux_disable_pie%': 0, 809 'linux_disable_pie%': 0,
807 810
808 # The release channel that this build targets. This is used to restrict 811 # The release channel that this build targets. This is used to restrict
809 # channel-specific build options, like which installer packages to create. 812 # channel-specific build options, like which installer packages to create.
810 # The default is 'all', which does no channel-specific filtering. 813 # The default is 'all', which does no channel-specific filtering.
811 'channel%': 'all', 814 'channel%': 'all',
812 815
813 # Override chromium_mac_pch and set it to 0 to suppress the use of 816 # Override chromium_mac_pch and set it to 0 to suppress the use of
(...skipping 3471 matching lines...) Expand 10 before | Expand all | Expand 10 after
4285 # settings in target dicts. SYMROOT is a special case, because many other 4288 # settings in target dicts. SYMROOT is a special case, because many other
4286 # Xcode variables depend on it, including variables such as 4289 # Xcode variables depend on it, including variables such as
4287 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4290 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4288 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4291 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4289 # files to appear (when present) in the UI as actual files and not red 4292 # files to appear (when present) in the UI as actual files and not red
4290 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4293 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4291 # and therefore SYMROOT, needs to be set at the project level. 4294 # and therefore SYMROOT, needs to be set at the project level.
4292 'SYMROOT': '<(DEPTH)/xcodebuild', 4295 'SYMROOT': '<(DEPTH)/xcodebuild',
4293 }, 4296 },
4294 } 4297 }
OLDNEW
« no previous file with comments | « no previous file | ui/ui.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698