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

Side by Side Diff: build/common.gypi

Issue 12330155: Isolate check_internal.py to the .gypi files that need it. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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
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 1016 matching lines...) Expand 10 before | Expand all | Expand 10 after
1027 'directx_sdk_path%': '<(directx_sdk_default_path)', 1027 'directx_sdk_path%': '<(directx_sdk_default_path)',
1028 }, { 1028 }, {
1029 'directx_sdk_path%': '$(DXSDK_DIR)', 1029 'directx_sdk_path%': '$(DXSDK_DIR)',
1030 }], 1030 }],
1031 ['OS=="win"', { 1031 ['OS=="win"', {
1032 'windows_driver_kit_path%': '$(WDK_DIR)', 1032 'windows_driver_kit_path%': '$(WDK_DIR)',
1033 # Set the python arch to prevent conflicts with pyauto on Win64 build. 1033 # Set the python arch to prevent conflicts with pyauto on Win64 build.
1034 # TODO(jschuh): crbug.com/177664 Investigate Win64 pyauto build. 1034 # TODO(jschuh): crbug.com/177664 Investigate Win64 pyauto build.
1035 'python_arch%': 'ia32', 1035 'python_arch%': 'ia32',
1036 }], 1036 }],
1037 # If use_official_google_api_keys is already set (to 0 or 1), we
1038 # do none of the implicit checking. If it is set to 1 and the
1039 # internal keys file is missing, the build will fail at compile
1040 # time. If it is set to 0 and keys are not provided by other
1041 # means, a warning will be printed at compile time.
1042 ['use_official_google_api_keys==2', {
1043 'use_official_google_api_keys%':
1044 '<!(python <(DEPTH)/google_apis/build/check_internal.py <(DEPTH)/goo gle_apis/internal/google_chrome_api_keys.h)',
1045 }],
1046 ['os_posix==1 and OS!="mac" and OS!="ios"', { 1037 ['os_posix==1 and OS!="mac" and OS!="ios"', {
1047 # Figure out the python architecture to decide if we build pyauto. 1038 # Figure out the python architecture to decide if we build pyauto.
1048 'python_arch%': '<!(<(DEPTH)/build/linux/python_arch.sh <(sysroot)/usr/< (system_libdir)/libpython<(python_ver).so.1.0)', 1039 'python_arch%': '<!(<(DEPTH)/build/linux/python_arch.sh <(sysroot)/usr/< (system_libdir)/libpython<(python_ver).so.1.0)',
1049 'conditions': [ 1040 'conditions': [
1050 # TODO(glider): set clang to 1 earlier for ASan and TSan builds so 1041 # TODO(glider): set clang to 1 earlier for ASan and TSan builds so
1051 # that it takes effect here. 1042 # that it takes effect here.
1052 ['clang==0 and asan==0 and tsan==0', { 1043 ['clang==0 and asan==0 and tsan==0', {
1053 # This will set gcc_version to XY if you are running gcc X.Y.*. 1044 # This will set gcc_version to XY if you are running gcc X.Y.*.
1054 # This is used to tweak build flags for gcc 4.5. 1045 # This is used to tweak build flags for gcc 4.5.
1055 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)', 1046 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)',
(...skipping 3044 matching lines...) Expand 10 before | Expand all | Expand 10 after
4100 # settings in target dicts. SYMROOT is a special case, because many other 4091 # settings in target dicts. SYMROOT is a special case, because many other
4101 # Xcode variables depend on it, including variables such as 4092 # Xcode variables depend on it, including variables such as
4102 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4093 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4103 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4094 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4104 # files to appear (when present) in the UI as actual files and not red 4095 # files to appear (when present) in the UI as actual files and not red
4105 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4096 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4106 # and therefore SYMROOT, needs to be set at the project level. 4097 # and therefore SYMROOT, needs to be set at the project level.
4107 'SYMROOT': '<(DEPTH)/xcodebuild', 4098 'SYMROOT': '<(DEPTH)/xcodebuild',
4108 }, 4099 },
4109 } 4100 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_tests_unit.gypi » ('j') | google_apis/determine_use_official_keys.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698