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

Side by Side Diff: test/mac/sdkroot/test.gyp

Issue 10898022: mac ninja&make: Expose SDKROOT to the environment. (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: Created 8 years, 3 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 Google Inc. All rights reserved. 1 # Copyright (c) 2012 Google Inc. 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 'targets': [ 5 'targets': [
6 { 6 {
7 'target_name': 'mytarget', 7 'target_name': 'mytarget',
8 'type': 'executable', 8 'type': 'executable',
9 'sources': [ 'file.cc', ], 9 'sources': [ 'file.cc', ],
10 'xcode_settings': { 10 'xcode_settings': {
11 'SDKROOT': 'macosx10.6', 11 'SDKROOT': 'macosx10.6',
12 }, 12 },
13 'postbuilds': [
14 {
15 'postbuild_name': 'envtest',
16 'action': [ './test_shorthand.sh', ],
17 },
18 ],
13 }, 19 },
14 ], 20 ],
15 } 21 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698