diff options
author | earthdok@chromium.org <earthdok@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-14 19:26:34 +0000 |
---|---|---|
committer | earthdok@chromium.org <earthdok@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-14 19:26:34 +0000 |
commit | 9705f8af5dc63279c10d6c0809e547a8299d03cc (patch) | |
tree | c8c886c76903f6339a63bb61bddc6a0f70e5a88b /third_party | |
parent | fee9eca0808268f140b09f0664b23b3928d75e76 (diff) | |
download | chromium_src-9705f8af5dc63279c10d6c0809e547a8299d03cc.zip chromium_src-9705f8af5dc63279c10d6c0809e547a8299d03cc.tar.gz chromium_src-9705f8af5dc63279c10d6c0809e547a8299d03cc.tar.bz2 |
Fix build error caused by r251365.
BUG=337426
TBR=glider@chromium.org
Review URL: https://codereview.chromium.org/166373005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251388 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/libc++/libc++.gyp | 6 | ||||
-rw-r--r-- | third_party/libc++abi/libc++abi.gyp | 6 |
2 files changed, 4 insertions, 8 deletions
diff --git a/third_party/libc++/libc++.gyp b/third_party/libc++/libc++.gyp index 7f87ead..c33ff1a 100644 --- a/third_party/libc++/libc++.gyp +++ b/third_party/libc++/libc++.gyp @@ -65,6 +65,8 @@ ['_type!="none"', { 'include_dirs': [ 'trunk/include', + # TODO(earthdok): remove when http://crbug.com/337426 is fixed + '../llvm-build/Release+Asserts/lib/clang/3.5/include/' ], 'cflags_cc': [ '-nostdinc++', @@ -73,10 +75,6 @@ '-stdlib=libc++', '-L<(PRODUCT_DIR)/lib/', ], - 'include_dirs': [ - # TODO(earthdok): remove when http://crbug.com/337426 is fixed - '../llvm-build/Release+Asserts/lib/clang/3.5/include/' - ], }], ], }, diff --git a/third_party/libc++abi/libc++abi.gyp b/third_party/libc++abi/libc++abi.gyp index 0a1ab54..c3aa87e 100644 --- a/third_party/libc++abi/libc++abi.gyp +++ b/third_party/libc++abi/libc++abi.gyp @@ -61,6 +61,8 @@ ['_type!="none"', { 'include_dirs': [ 'trunk/include', + # TODO(earthdok): remove when http://crbug.com/337426 is fixed + '../llvm-build/Release+Asserts/lib/clang/3.5/include/' ], 'cflags_cc': [ '-nostdinc++', @@ -68,10 +70,6 @@ 'ldflags': [ '-L<(PRODUCT_DIR)/lib/', ], - 'include_dirs': [ - # TODO(earthdok): remove when http://crbug.com/337426 is fixed - '../llvm-build/Release+Asserts/lib/clang/3.5/include/' - ], }], ], }, |