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

Side by Side Diff: src/d8.gyp

Issue 61153009: Add support for the QNX operating system. (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: Address latest review comments Created 7 years 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 | « src/cpu.cc ('k') | src/platform.h » ('j') | 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 [ 'want_separate_host_toolset==1', { 59 [ 'want_separate_host_toolset==1', {
60 'dependencies': [ 60 'dependencies': [
61 'd8_js2c#host', 61 'd8_js2c#host',
62 ], 62 ],
63 }, { 63 }, {
64 'dependencies': [ 64 'dependencies': [
65 'd8_js2c', 65 'd8_js2c',
66 ], 66 ],
67 }], 67 }],
68 ['(OS=="linux" or OS=="mac" or OS=="freebsd" or OS=="netbsd" \ 68 ['(OS=="linux" or OS=="mac" or OS=="freebsd" or OS=="netbsd" \
69 or OS=="openbsd" or OS=="solaris" or OS=="android")', { 69 or OS=="openbsd" or OS=="solaris" or OS=="android" \
70 or OS=="qnx")', {
70 'sources': [ 'd8-posix.cc', ] 71 'sources': [ 'd8-posix.cc', ]
71 }], 72 }],
72 [ 'OS=="win"', { 73 [ 'OS=="win"', {
73 'sources': [ 'd8-windows.cc', ] 74 'sources': [ 'd8-windows.cc', ]
74 }], 75 }],
75 ], 76 ],
76 }], 77 }],
77 ['v8_enable_vtunejit==1', { 78 ['v8_enable_vtunejit==1', {
78 'dependencies': [ 79 'dependencies': [
79 '../src/third_party/vtune/v8vtune.gyp:v8_vtune', 80 '../src/third_party/vtune/v8vtune.gyp:v8_vtune',
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 '<@(_outputs)', 125 '<@(_outputs)',
125 'D8', 126 'D8',
126 'off', # compress startup data 127 'off', # compress startup data
127 '<@(js_files)' 128 '<@(js_files)'
128 ], 129 ],
129 }, 130 },
130 ], 131 ],
131 } 132 }
132 ], 133 ],
133 } 134 }
OLDNEW
« no previous file with comments | « src/cpu.cc ('k') | src/platform.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698