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

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

Issue 24315007: Avoid fallback to weak entropy for the PRNGs on Windows. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix typo. Created 7 years, 2 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 | « src/utils/random-number-generator.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 787 matching lines...) Expand 10 before | Expand all | Expand 10 after
798 ], 798 ],
799 } 799 }
800 ], 800 ],
801 ['OS=="mac"', { 801 ['OS=="mac"', {
802 'sources': [ 802 'sources': [
803 '../../src/platform-macos.cc', 803 '../../src/platform-macos.cc',
804 '../../src/platform-posix.cc' 804 '../../src/platform-posix.cc'
805 ]}, 805 ]},
806 ], 806 ],
807 ['OS=="win"', { 807 ['OS=="win"', {
808 'defines': [
809 '_CRT_RAND_S' # for rand_s()
810 ],
808 'variables': { 811 'variables': {
809 'gyp_generators': '<!(echo $GYP_GENERATORS)', 812 'gyp_generators': '<!(echo $GYP_GENERATORS)',
810 }, 813 },
811 'conditions': [ 814 'conditions': [
812 ['gyp_generators=="make"', { 815 ['gyp_generators=="make"', {
813 'variables': { 816 'variables': {
814 'build_env': '<!(uname -o)', 817 'build_env': '<!(uname -o)',
815 }, 818 },
816 'conditions': [ 819 'conditions': [
817 ['build_env=="Cygwin"', { 820 ['build_env=="Cygwin"', {
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
1041 }], 1044 }],
1042 ['v8_compress_startup_data=="bz2"', { 1045 ['v8_compress_startup_data=="bz2"', {
1043 'libraries': [ 1046 'libraries': [
1044 '-lbz2', 1047 '-lbz2',
1045 ] 1048 ]
1046 }], 1049 }],
1047 ], 1050 ],
1048 }, 1051 },
1049 ], 1052 ],
1050 } 1053 }
OLDNEW
« no previous file with comments | « src/utils/random-number-generator.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698