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

Unified Diff: build/common.gypi

Issue 8352029: clang: Enable using a different compiler path for standalone webkit make builds. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index 9e3fe7ca8127bd6e1270e61c9b1a059a157a0ad4..8047a90de2c95200423f0a1bbf6d0e24fbcdd3b6 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -2544,6 +2544,15 @@
['CXX.host', '$(CXX)'],
['LINK.host', '$(LINK)'],
],
+ 'conditions': [
+ ['inside_chromium_build==0', {
Mark Mentovai 2011/10/20 13:28:57 What else sets this variable? You’re using it to
Nico 2011/10/20 14:36:55 It's named unfortunately, no other build sets it.
+ 'make_global_settings': [
+ # Fix up the paths to work in a stand-alone webkit checkout.
+ ['CC', 'Source/WebKit/chromium/third_party/llvm-build/Release+Asserts/bin/clang'],
+ ['CXX', 'Source/WebKit/chromium/third_party/llvm-build/Release+Asserts/bin/clang++'],
+ ],
+ }],
+ ],
}],
],
'xcode_settings': {
« 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