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

Side by Side Diff: test/mac/archs/test-archs-x86_64.gyp

Issue 9382044: mac: Support ARCHS with zero or one element in the make and ninja generators. (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: '' Created 8 years, 10 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
(Empty)
1 {
2 'targets': [
3 {
4 'target_name': 'lib',
5 'product_name': 'Test64',
6 'type': 'static_library',
7 'sources': [ 'my_file.cc' ],
8 'xcode_settings': {
9 'ARCHS': [ 'x86_64' ],
10 },
11 },
12 {
13 'target_name': 'exe',
14 'product_name': 'Test64',
15 'type': 'executable',
16 'dependencies': [ 'lib' ],
17 'sources': [ 'my_main_file.cc' ],
18 'xcode_settings': {
19 'ARCHS': [ 'x86_64' ],
20 },
21 },
22 ]
23 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698