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

Side by Side Diff: build/common.gypi

Issue 19476008: Revert "Turn on i18n support in V8." (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Upload again Created 7 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 | Annotate | Revision Log
« no previous file with comments | « DEPS ('k') | no next file » | 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 1087 matching lines...) Expand 10 before | Expand all | Expand 10 after
1098 'windows_sdk_default_path': '<(DEPTH)/third_party/platformsdk_win8/files', 1098 'windows_sdk_default_path': '<(DEPTH)/third_party/platformsdk_win8/files',
1099 'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files', 1099 'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files',
1100 1100
1101 # Whether we are using the rlz library or not. Platforms like Android send 1101 # Whether we are using the rlz library or not. Platforms like Android send
1102 # rlz codes for searches but do not use the library. 1102 # rlz codes for searches but do not use the library.
1103 'enable_rlz%': 0, 1103 'enable_rlz%': 0,
1104 1104
1105 # Turns on compiler optimizations in V8 in Debug build. 1105 # Turns on compiler optimizations in V8 in Debug build.
1106 'v8_optimized_debug': 1, 1106 'v8_optimized_debug': 1,
1107 1107
1108 # Turns on the i18n support in V8.
1109 'v8_enable_i18n_support': 1,
1110
1111 'conditions': [ 1108 'conditions': [
1112 # The version of GCC in use, set later in platforms that use GCC and have 1109 # The version of GCC in use, set later in platforms that use GCC and have
1113 # not explicitly chosen to build with clang. Currently, this means all 1110 # not explicitly chosen to build with clang. Currently, this means all
1114 # platforms except Windows, Mac and iOS. 1111 # platforms except Windows, Mac and iOS.
1115 # TODO(glider): set clang to 1 earlier for ASan and TSan builds so that 1112 # TODO(glider): set clang to 1 earlier for ASan and TSan builds so that
1116 # it takes effect here. 1113 # it takes effect here.
1117 ['os_posix==1 and OS!="mac" and OS!="ios" and clang==0 and asan==0 and lsa n==0 and tsan==0 and msan==0', { 1114 ['os_posix==1 and OS!="mac" and OS!="ios" and clang==0 and asan==0 and lsa n==0 and tsan==0 and msan==0', {
1118 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)', 1115 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)',
1119 }, { 1116 }, {
1120 'gcc_version%': 0, 1117 'gcc_version%': 0,
(...skipping 3525 matching lines...) Expand 10 before | Expand all | Expand 10 after
4646 # settings in target dicts. SYMROOT is a special case, because many other 4643 # settings in target dicts. SYMROOT is a special case, because many other
4647 # Xcode variables depend on it, including variables such as 4644 # Xcode variables depend on it, including variables such as
4648 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4645 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4649 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4646 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4650 # files to appear (when present) in the UI as actual files and not red 4647 # files to appear (when present) in the UI as actual files and not red
4651 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4648 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4652 # and therefore SYMROOT, needs to be set at the project level. 4649 # and therefore SYMROOT, needs to be set at the project level.
4653 'SYMROOT': '<(DEPTH)/xcodebuild', 4650 'SYMROOT': '<(DEPTH)/xcodebuild',
4654 }, 4651 },
4655 } 4652 }
OLDNEW
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698