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

Side by Side Diff: build/common.gypi

Issue 99473012: Enable icu_use_data_file on Windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: icudtl.dat listed in win/server.rules Created 7 years 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
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 1257 matching lines...) Expand 10 before | Expand all | Expand 10 after
1268 ['OS=="win" and "<!(python <(DEPTH)/build/dir_exists.py <(directx_sdk_defa ult_path))"=="True"', { 1268 ['OS=="win" and "<!(python <(DEPTH)/build/dir_exists.py <(directx_sdk_defa ult_path))"=="True"', {
1269 'directx_sdk_path%': '<(directx_sdk_default_path)', 1269 'directx_sdk_path%': '<(directx_sdk_default_path)',
1270 }, { 1270 }, {
1271 'directx_sdk_path%': '$(DXSDK_DIR)', 1271 'directx_sdk_path%': '$(DXSDK_DIR)',
1272 }], 1272 }],
1273 ['OS=="win"', { 1273 ['OS=="win"', {
1274 'windows_driver_kit_path%': '$(WDK_DIR)', 1274 'windows_driver_kit_path%': '$(WDK_DIR)',
1275 # Set the python arch to prevent conflicts with pyauto on Win64 build. 1275 # Set the python arch to prevent conflicts with pyauto on Win64 build.
1276 # TODO(jschuh): crbug.com/177664 Investigate Win64 pyauto build. 1276 # TODO(jschuh): crbug.com/177664 Investigate Win64 pyauto build.
1277 'python_arch%': 'ia32', 1277 'python_arch%': 'ia32',
1278 'icu_use_data_file_flag%': 1,
1278 }], 1279 }],
1279 ['os_posix==1 and OS!="mac" and OS!="ios"', { 1280 ['os_posix==1 and OS!="mac" and OS!="ios"', {
1280 # Figure out the python architecture to decide if we build pyauto. 1281 # Figure out the python architecture to decide if we build pyauto.
1281 'python_arch%': '<!(<(DEPTH)/build/linux/python_arch.sh <(sysroot)/usr/< (system_libdir)/libpython<(python_ver).so.1.0)', 1282 'python_arch%': '<!(<(DEPTH)/build/linux/python_arch.sh <(sysroot)/usr/< (system_libdir)/libpython<(python_ver).so.1.0)',
1282 'conditions': [ 1283 'conditions': [
1283 ['target_arch=="mipsel"', { 1284 ['target_arch=="mipsel"', {
1284 'werror%': '', 1285 'werror%': '',
1285 'disable_nacl%': 1, 1286 'disable_nacl%': 1,
1286 'nacl_untrusted_build%': 0, 1287 'nacl_untrusted_build%': 0,
1287 'linux_use_tcmalloc%': 0, 1288 'linux_use_tcmalloc%': 0,
(...skipping 3519 matching lines...) Expand 10 before | Expand all | Expand 10 after
4807 # settings in target dicts. SYMROOT is a special case, because many other 4808 # settings in target dicts. SYMROOT is a special case, because many other
4808 # Xcode variables depend on it, including variables such as 4809 # Xcode variables depend on it, including variables such as
4809 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4810 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4810 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4811 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4811 # files to appear (when present) in the UI as actual files and not red 4812 # files to appear (when present) in the UI as actual files and not red
4812 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4813 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4813 # and therefore SYMROOT, needs to be set at the project level. 4814 # and therefore SYMROOT, needs to be set at the project level.
4814 'SYMROOT': '<(DEPTH)/xcodebuild', 4815 'SYMROOT': '<(DEPTH)/xcodebuild',
4815 }, 4816 },
4816 } 4817 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698