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

Side by Side Diff: build/common.gypi

Issue 14404003: Remove no longer used android_build_type var. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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 | 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 1016 matching lines...) Expand 10 before | Expand all | Expand 10 after
1027 # Compared to full debug version, the default Debug configuration on Android 1027 # Compared to full debug version, the default Debug configuration on Android
1028 # has no full v8 debug, has size optimization and linker gc section, so that 1028 # has no full v8 debug, has size optimization and linker gc section, so that
1029 # we can build a debug version with acceptable size and performance. 1029 # we can build a debug version with acceptable size and performance.
1030 'android_full_debug%': 0, 1030 'android_full_debug%': 0,
1031 1031
1032 # Sets the default version name and code for Android app, by default we 1032 # Sets the default version name and code for Android app, by default we
1033 # do a developer build. 1033 # do a developer build.
1034 'android_app_version_name%': 'Developer Build', 1034 'android_app_version_name%': 'Developer Build',
1035 'android_app_version_code%': 0, 1035 'android_app_version_code%': 0,
1036 1036
1037 # Temporarily set android_build_type until all uses of it have been renamed.
1038 # http://crbug.com/184431
1039 'android_build_type%': '<(android_webview_build)',
1040
1041 'sas_dll_exists': '<!(python <(DEPTH)/build/dir_exists.py <(sas_dll_path))', 1037 'sas_dll_exists': '<!(python <(DEPTH)/build/dir_exists.py <(sas_dll_path))',
1042 'wix_exists': '<!(python <(DEPTH)/build/dir_exists.py <(wix_path))', 1038 'wix_exists': '<!(python <(DEPTH)/build/dir_exists.py <(wix_path))',
1043 1039
1044 'windows_sdk_default_path': '<(DEPTH)/third_party/platformsdk_win8/files', 1040 'windows_sdk_default_path': '<(DEPTH)/third_party/platformsdk_win8/files',
1045 'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files', 1041 'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files',
1046 1042
1047 # Whether we are using the rlz library or not. Platforms like Android send 1043 # Whether we are using the rlz library or not. Platforms like Android send
1048 # rlz codes for searches but do not use the library. 1044 # rlz codes for searches but do not use the library.
1049 'enable_rlz%': 0, 1045 'enable_rlz%': 0,
1050 1046
(...skipping 3211 matching lines...) Expand 10 before | Expand all | Expand 10 after
4262 # settings in target dicts. SYMROOT is a special case, because many other 4258 # settings in target dicts. SYMROOT is a special case, because many other
4263 # Xcode variables depend on it, including variables such as 4259 # Xcode variables depend on it, including variables such as
4264 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4260 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4265 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4261 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4266 # files to appear (when present) in the UI as actual files and not red 4262 # files to appear (when present) in the UI as actual files and not red
4267 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4263 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4268 # and therefore SYMROOT, needs to be set at the project level. 4264 # and therefore SYMROOT, needs to be set at the project level.
4269 'SYMROOT': '<(DEPTH)/xcodebuild', 4265 'SYMROOT': '<(DEPTH)/xcodebuild',
4270 }, 4266 },
4271 } 4267 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698