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

Side by Side Diff: build/common.gypi

Issue 179933002: Add a new configuration 'Profile' when building for iOS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
« 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 2924 matching lines...) Expand 10 before | Expand all | Expand 10 after
2935 # 2935 #
2936 # Concrete configurations 2936 # Concrete configurations
2937 # 2937 #
2938 'Debug': { 2938 'Debug': {
2939 'inherit_from': ['Common_Base', 'x86_Base', 'Debug_Base'], 2939 'inherit_from': ['Common_Base', 'x86_Base', 'Debug_Base'],
2940 }, 2940 },
2941 'Release': { 2941 'Release': {
2942 'inherit_from': ['Common_Base', 'x86_Base', 'Release_Base'], 2942 'inherit_from': ['Common_Base', 'x86_Base', 'Release_Base'],
2943 }, 2943 },
2944 'conditions': [ 2944 'conditions': [
2945 [ 'OS=="ios"', {
2946 'Profile': {
2947 'inherit_from': ['Common_Base', 'x86_Base', 'Release_Base'],
2948 'target_conditions': [
2949 [ '_type=="executable"', {
2950 # To get a real .dSYM bundle produced by dsymutil, set the
2951 # debug information format to dwarf-with-dsym. Since
2952 # strip_from_xcode will not be used, set Xcode to do the
2953 # stripping as well.
2954 'xcode_settings': {
2955 'DEBUG_INFORMATION_FORMAT': 'dwarf-with-dsym',
2956 'DEPLOYMENT_POSTPROCESSING': 'YES',
2957 'STRIP_INSTALLED_PRODUCT': 'YES',
2958 },
2959 }],
2960 ],
2961 },
2962 }],
2945 [ 'OS=="win"', { 2963 [ 'OS=="win"', {
2946 # TODO(bradnelson): add a gyp mechanism to make this more graceful. 2964 # TODO(bradnelson): add a gyp mechanism to make this more graceful.
2947 'Debug_x64': { 2965 'Debug_x64': {
2948 'inherit_from': ['Common_Base', 'x64_Base', 'Debug_Base'], 2966 'inherit_from': ['Common_Base', 'x64_Base', 'Debug_Base'],
2949 }, 2967 },
2950 'Release_x64': { 2968 'Release_x64': {
2951 'inherit_from': ['Common_Base', 'x64_Base', 'Release_Base'], 2969 'inherit_from': ['Common_Base', 'x64_Base', 'Release_Base'],
2952 }, 2970 },
2953 }], 2971 }],
2954 ], 2972 ],
(...skipping 2072 matching lines...) Expand 10 before | Expand all | Expand 10 after
5027 # settings in target dicts. SYMROOT is a special case, because many other 5045 # settings in target dicts. SYMROOT is a special case, because many other
5028 # Xcode variables depend on it, including variables such as 5046 # Xcode variables depend on it, including variables such as
5029 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5047 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5030 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5048 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5031 # files to appear (when present) in the UI as actual files and not red 5049 # files to appear (when present) in the UI as actual files and not red
5032 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5050 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5033 # and therefore SYMROOT, needs to be set at the project level. 5051 # and therefore SYMROOT, needs to be set at the project level.
5034 'SYMROOT': '<(DEPTH)/xcodebuild', 5052 'SYMROOT': '<(DEPTH)/xcodebuild',
5035 }, 5053 },
5036 } 5054 }
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