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

Unified Diff: gyp/tests.gypi

Issue 1438113002: Factor CSS3 matching rules. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Allow tests to use C++11. Created 5 years, 1 month 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 | include/ports/SkFontMgr.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gyp/tests.gypi
diff --git a/gyp/tests.gypi b/gyp/tests.gypi
index 1fd87addf9d2d9ea0a828ea6694dfca0c5c35bf6..a0e89a542279043e5be078da21e26da9fce0f273 100644
--- a/gyp/tests.gypi
+++ b/gyp/tests.gypi
@@ -49,6 +49,16 @@
],
}],
],
+ 'xcode_settings': {
mtklein 2015/11/12 15:27:29 Let's do this globally?
mtklein 2015/11/12 15:28:45 (I think that'll fix your 10.8 bot.)
+ 'conditions': [
+ [ 'skia_osx_deployment_target==""', {
+ 'MACOSX_DEPLOYMENT_TARGET': '10.7', # -mmacos-version-min, passed in env to ld.
+ }, {
+ 'MACOSX_DEPLOYMENT_TARGET': '<(skia_osx_deployment_target)',
+ }],
+ ],
+ 'CLANG_CXX_LIBRARY': 'libc++',
+ },
'sources': [
'../tests/Test.h',
'<!@(python find.py ../tests "*.c*")',
« no previous file with comments | « no previous file | include/ports/SkFontMgr.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698