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

Side by Side Diff: tools/gyp/v8.gyp

Issue 9808065: Add support for Mac OS X 64bit builds with GYP (Closed) Base URL: git://github.com/v8/v8.git@bleeding_edge
Patch Set: Rebased against latest bleeding_edge branch and re-tested Created 8 years, 8 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
« no previous file with comments | « build/gyp_v8 ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 'dependencies': ['v8_base', 'v8_nosnapshot'], 52 'dependencies': ['v8_base', 'v8_nosnapshot'],
53 }], 53 }],
54 ['component=="shared_library"', { 54 ['component=="shared_library"', {
55 'type': '<(component)', 55 'type': '<(component)',
56 'sources': [ 56 'sources': [
57 # Note: on non-Windows we still build this file so that gyp 57 # Note: on non-Windows we still build this file so that gyp
58 # has some sources to link into the component. 58 # has some sources to link into the component.
59 '../../src/v8dll-main.cc', 59 '../../src/v8dll-main.cc',
60 ], 60 ],
61 'conditions': [ 61 'conditions': [
62 ['OS=="mac"', {
63 'xcode_settings': {
64 'OTHER_LDFLAGS': ['-dynamiclib', '-all_load']
65 },
66 }],
62 ['OS=="win"', { 67 ['OS=="win"', {
63 'defines': [ 68 'defines': [
64 'BUILDING_V8_SHARED', 69 'BUILDING_V8_SHARED',
65 ], 70 ],
66 'direct_dependent_settings': { 71 'direct_dependent_settings': {
67 'defines': [ 72 'defines': [
68 'USING_V8_SHARED', 73 'USING_V8_SHARED',
69 ], 74 ],
70 }, 75 },
71 }, { 76 }, {
(...skipping 928 matching lines...) Expand 10 before | Expand all | Expand 10 after
1000 }], 1005 }],
1001 ], 1006 ],
1002 'dependencies': [ 1007 'dependencies': [
1003 'v8' 1008 'v8'
1004 ], 1009 ],
1005 }, 1010 },
1006 ], 1011 ],
1007 }], 1012 }],
1008 ], 1013 ],
1009 } 1014 }
OLDNEW
« no previous file with comments | « build/gyp_v8 ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698