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

Side by Side Diff: build/common.gypi

Issue 11555026: Linux: add option to use system harfbuzz. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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
« no previous file with comments | « no previous file | third_party/harfbuzz-ng/harfbuzz.gyp » ('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 1123 matching lines...) Expand 10 before | Expand all | Expand 10 after
1134 'p2p_apis%' : 0, 1134 'p2p_apis%' : 0,
1135 1135
1136 # TODO(jrg): when 'gtest_target_type'=='shared_library' and 1136 # TODO(jrg): when 'gtest_target_type'=='shared_library' and
1137 # OS==android, make all gtest_targets depend on 1137 # OS==android, make all gtest_targets depend on
1138 # testing/android/native_test.gyp:native_test_apk. 1138 # testing/android/native_test.gyp:native_test_apk.
1139 'gtest_target_type%': 'shared_library', 1139 'gtest_target_type%': 'shared_library',
1140 1140
1141 # Uses system APIs for decoding audio and video. 1141 # Uses system APIs for decoding audio and video.
1142 'use_libffmpeg%': '0', 1142 'use_libffmpeg%': '0',
1143 1143
1144 # Always use the chromium skia. The use_system_harfbuzz needs to 1144 # Always use the chromium skia.
1145 # match use_system_skia.
1146 'use_system_skia%': '0', 1145 'use_system_skia%': '0',
1147 'use_system_harfbuzz%': '0',
1148 1146
1149 # Configure crash reporting and build options based on release type. 1147 # Configure crash reporting and build options based on release type.
1150 'conditions': [ 1148 'conditions': [
1151 ['buildtype=="Official"', { 1149 ['buildtype=="Official"', {
1152 # Only report crash dumps for Official builds. 1150 # Only report crash dumps for Official builds.
1153 'linux_breakpad%': 1, 1151 'linux_breakpad%': 1,
1154 }, { 1152 }, {
1155 'linux_breakpad%': 0, 1153 'linux_breakpad%': 0,
1156 }], 1154 }],
1157 ], 1155 ],
(...skipping 2773 matching lines...) Expand 10 before | Expand all | Expand 10 after
3931 # settings in target dicts. SYMROOT is a special case, because many other 3929 # settings in target dicts. SYMROOT is a special case, because many other
3932 # Xcode variables depend on it, including variables such as 3930 # Xcode variables depend on it, including variables such as
3933 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 3931 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
3934 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 3932 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
3935 # files to appear (when present) in the UI as actual files and not red 3933 # files to appear (when present) in the UI as actual files and not red
3936 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 3934 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
3937 # and therefore SYMROOT, needs to be set at the project level. 3935 # and therefore SYMROOT, needs to be set at the project level.
3938 'SYMROOT': '<(DEPTH)/xcodebuild', 3936 'SYMROOT': '<(DEPTH)/xcodebuild',
3939 }, 3937 },
3940 } 3938 }
OLDNEW
« no previous file with comments | « no previous file | third_party/harfbuzz-ng/harfbuzz.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698