diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-05 20:38:50 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-05 20:38:50 +0000 |
commit | 29c2daeafac577bd80c7b37891e3bbae7c542b5e (patch) | |
tree | 3ba8adb929982562db6c0b37c15c00ada32b41da /build | |
parent | 678a7d737ffd81978c981d692972695e4ad7f394 (diff) | |
download | chromium_src-29c2daeafac577bd80c7b37891e3bbae7c542b5e.zip chromium_src-29c2daeafac577bd80c7b37891e3bbae7c542b5e.tar.gz chromium_src-29c2daeafac577bd80c7b37891e3bbae7c542b5e.tar.bz2 |
harfbuzz: check in harfbuzz-ng, add gyp define to use it
This checks in harbuzz-ng b0d396aa88b3cdf8cea896bfeeba197656e1cdb1.
Setting use_harfbuzz_ng to 1 in gyp will cause us to build
harfbuzz-ng in place of harfbuzz. So far this currently fails to
compile due to all our other code relying on the old API.
BUG=68551
TEST=./build/gyp_chromium -Duse_harfbuzz_ng=1, verify build breaks
Review URL: http://codereview.chromium.org/6052008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70539 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/common.gypi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/build/common.gypi b/build/common.gypi index e741a29..f914684 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -323,6 +323,10 @@ # Use OpenSSL instead of NSS. Under development: see http://crbug.com/62803 'use_openssl%': 0, + # Use Harfbuzz-NG instead of Harfbuzz. + # Under development: http://crbug.com/68551 + 'use_harfbuzz_ng%': 0, + 'conditions': [ ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { # This will set gcc_version to XY if you are running gcc X.Y.*. |