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

Side by Side Diff: build/common.gypi

Issue 16831013: [Android] Add an action to check/record attached devices (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Blah 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 | « build/android/setup.gyp ('k') | build/java_apk.gypi » ('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 1069 matching lines...) Expand 10 before | Expand all | Expand 10 after
1080 # Compared to full debug version, the default Debug configuration on Android 1080 # Compared to full debug version, the default Debug configuration on Android
1081 # has no full v8 debug, has size optimization and linker gc section, so that 1081 # has no full v8 debug, has size optimization and linker gc section, so that
1082 # we can build a debug version with acceptable size and performance. 1082 # we can build a debug version with acceptable size and performance.
1083 'android_full_debug%': 0, 1083 'android_full_debug%': 0,
1084 1084
1085 # Sets the default version name and code for Android app, by default we 1085 # Sets the default version name and code for Android app, by default we
1086 # do a developer build. 1086 # do a developer build.
1087 'android_app_version_name%': 'Developer Build', 1087 'android_app_version_name%': 'Developer Build',
1088 'android_app_version_code%': 0, 1088 'android_app_version_code%': 0,
1089 1089
1090
1091 # Contains data about the attached devices for gyp_managed_install.
1092 'build_device_config_path': '<(PRODUCT_DIR)/build_devices.cfg',
1093
1090 'sas_dll_exists': '<!(python <(DEPTH)/build/dir_exists.py <(sas_dll_path))', 1094 'sas_dll_exists': '<!(python <(DEPTH)/build/dir_exists.py <(sas_dll_path))',
1091 'wix_exists': '<!(python <(DEPTH)/build/dir_exists.py <(wix_path))', 1095 'wix_exists': '<!(python <(DEPTH)/build/dir_exists.py <(wix_path))',
1092 1096
1093 'windows_sdk_default_path': '<(DEPTH)/third_party/platformsdk_win8/files', 1097 'windows_sdk_default_path': '<(DEPTH)/third_party/platformsdk_win8/files',
1094 'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files', 1098 'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files',
1095 1099
1096 # Whether we are using the rlz library or not. Platforms like Android send 1100 # Whether we are using the rlz library or not. Platforms like Android send
1097 # rlz codes for searches but do not use the library. 1101 # rlz codes for searches but do not use the library.
1098 'enable_rlz%': 0, 1102 'enable_rlz%': 0,
1099 1103
(...skipping 3499 matching lines...) Expand 10 before | Expand all | Expand 10 after
4599 # settings in target dicts. SYMROOT is a special case, because many other 4603 # settings in target dicts. SYMROOT is a special case, because many other
4600 # Xcode variables depend on it, including variables such as 4604 # Xcode variables depend on it, including variables such as
4601 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4605 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4602 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4606 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4603 # files to appear (when present) in the UI as actual files and not red 4607 # files to appear (when present) in the UI as actual files and not red
4604 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4608 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4605 # and therefore SYMROOT, needs to be set at the project level. 4609 # and therefore SYMROOT, needs to be set at the project level.
4606 'SYMROOT': '<(DEPTH)/xcodebuild', 4610 'SYMROOT': '<(DEPTH)/xcodebuild',
4607 }, 4611 },
4608 } 4612 }
OLDNEW
« no previous file with comments | « build/android/setup.gyp ('k') | build/java_apk.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698