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

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

Issue 513923005: More PNaCL fixes. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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
« no previous file with comments | « test/cctest/test-api.cc ('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 1145 matching lines...) Expand 10 before | Expand all | Expand 10 after
1156 '../../src/base/utils/random-number-generator.cc', 1156 '../../src/base/utils/random-number-generator.cc',
1157 '../../src/base/utils/random-number-generator.h', 1157 '../../src/base/utils/random-number-generator.h',
1158 ], 1158 ],
1159 'conditions': [ 1159 'conditions': [
1160 ['want_separate_host_toolset==1', { 1160 ['want_separate_host_toolset==1', {
1161 'toolsets': ['host', 'target'], 1161 'toolsets': ['host', 'target'],
1162 }, { 1162 }, {
1163 'toolsets': ['target'], 1163 'toolsets': ['target'],
1164 }], 1164 }],
1165 ['OS=="linux"', { 1165 ['OS=="linux"', {
1166 'link_settings': { 1166 'conditions': [
1167 'libraries': [ 1167 ['nacl_target_arch=="none"', {
1168 '-lrt' 1168 'link_settings': {
1169 ] 1169 'libraries': [
1170 }, 1170 '-lrt'
1171 ],
1172 },
1173 }, {
1174 'defines': [
1175 'V8_LIBRT_NOT_AVAILABLE=1',
1176 ],
1177 }],
1178 ],
1171 'sources': [ 1179 'sources': [
1172 '../../src/base/platform/platform-linux.cc', 1180 '../../src/base/platform/platform-linux.cc',
1173 '../../src/base/platform/platform-posix.cc' 1181 '../../src/base/platform/platform-posix.cc'
1174 ], 1182 ],
1175 } 1183 }
1176 ], 1184 ],
1177 ['OS=="android"', { 1185 ['OS=="android"', {
1178 'sources': [ 1186 'sources': [
1179 '../../src/base/platform/platform-posix.cc' 1187 '../../src/base/platform/platform-posix.cc'
1180 ], 1188 ],
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after
1574 }], 1582 }],
1575 ['v8_compress_startup_data=="bz2"', { 1583 ['v8_compress_startup_data=="bz2"', {
1576 'libraries': [ 1584 'libraries': [
1577 '-lbz2', 1585 '-lbz2',
1578 ] 1586 ]
1579 }], 1587 }],
1580 ], 1588 ],
1581 }, 1589 },
1582 ], 1590 ],
1583 } 1591 }
OLDNEW
« no previous file with comments | « test/cctest/test-api.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698