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

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

Issue 1879793002: Fix android_arm build hosted on Mac (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix Windows build break Created 4 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/standalone.gypi ('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 1733 matching lines...) Expand 10 before | Expand all | Expand 10 after
1744 '../../src/base/platform/platform-posix.cc' 1744 '../../src/base/platform/platform-posix.cc'
1745 ], 1745 ],
1746 } 1746 }
1747 ], 1747 ],
1748 ['OS=="android"', { 1748 ['OS=="android"', {
1749 'sources': [ 1749 'sources': [
1750 '../../src/base/platform/platform-posix.cc' 1750 '../../src/base/platform/platform-posix.cc'
1751 ], 1751 ],
1752 'link_settings': { 1752 'link_settings': {
1753 'target_conditions': [ 1753 'target_conditions': [
1754 ['_toolset=="host"', { 1754 ['_toolset=="host" and host_os!="mac"', {
1755 # Only include libdl and librt on host builds because they 1755 # Only include libdl and librt on host builds because they
1756 # are included by default on Android target builds, and we 1756 # are included by default on Android target builds, and we
1757 # don't want to re-include them here since this will change 1757 # don't want to re-include them here since this will change
1758 # library order and break (see crbug.com/469973). 1758 # library order and break (see crbug.com/469973).
1759 # These libraries do not exist on Mac hosted builds.
1759 'libraries': [ 1760 'libraries': [
1760 '-ldl', 1761 '-ldl',
1761 '-lrt' 1762 '-lrt'
1762 ] 1763 ]
1763 }] 1764 }]
1764 ] 1765 ]
1765 }, 1766 },
1766 'conditions': [ 1767 'conditions': [
1767 ['host_os=="mac"', { 1768 ['host_os=="mac"', {
1768 'target_conditions': [ 1769 'target_conditions': [
(...skipping 501 matching lines...) Expand 10 before | Expand all | Expand 10 after
2270 }], 2271 }],
2271 ['want_separate_host_toolset==1', { 2272 ['want_separate_host_toolset==1', {
2272 'toolsets': ['host'], 2273 'toolsets': ['host'],
2273 }, { 2274 }, {
2274 'toolsets': ['target'], 2275 'toolsets': ['target'],
2275 }], 2276 }],
2276 ], 2277 ],
2277 }, 2278 },
2278 ], 2279 ],
2279 } 2280 }
OLDNEW
« no previous file with comments | « build/standalone.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698