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

Side by Side Diff: src/d8.gyp

Issue 1243213004: Remove d8's interactive Javascript debugger. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix shared library build. Created 5 years, 5 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 | « src/d8.cc ('k') | src/d8.js » ('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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
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" or OS=="aix")', { 70 or OS=="qnx" or OS=="aix")', {
71 'sources': [ 'd8-posix.cc', ] 71 'sources': [ 'd8-posix.cc', ]
72 }], 72 }],
73 [ 'OS=="win"', { 73 [ 'OS=="win"', {
74 'sources': [ 'd8-windows.cc', ] 74 'sources': [ 'd8-windows.cc', ]
75 }], 75 }],
76 [ 'component!="shared_library"', { 76 [ 'component!="shared_library"', {
77 'sources': [ 77 'sources': [
78 'd8-debug.h',
79 'd8-debug.cc',
80 '<(SHARED_INTERMEDIATE_DIR)/d8-js.cc', 78 '<(SHARED_INTERMEDIATE_DIR)/d8-js.cc',
81 ], 79 ],
82 'conditions': [ 80 'conditions': [
83 [ 'want_separate_host_toolset==1', { 81 [ 'want_separate_host_toolset==1', {
84 'dependencies': [ 82 'dependencies': [
85 'd8_js2c#host', 83 'd8_js2c#host',
86 ], 84 ],
87 }, { 85 }, {
88 'dependencies': [ 86 'dependencies': [
89 'd8_js2c', 87 'd8_js2c',
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 '../tools/js2c.py', 138 '../tools/js2c.py',
141 '<@(_outputs)', 139 '<@(_outputs)',
142 'D8', 140 'D8',
143 '<@(js_files)' 141 '<@(js_files)'
144 ], 142 ],
145 }, 143 },
146 ], 144 ],
147 } 145 }
148 ], 146 ],
149 } 147 }
OLDNEW
« no previous file with comments | « src/d8.cc ('k') | src/d8.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698