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

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

Issue 76323002: Revert 17877 - Introduce a v8::Platform class that bundles embedder callbacks (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 1 month 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/v8.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 263 matching lines...) Expand 10 before | Expand all | Expand 10 after
274 '../../src/data-flow.h', 274 '../../src/data-flow.h',
275 '../../src/date.cc', 275 '../../src/date.cc',
276 '../../src/date.h', 276 '../../src/date.h',
277 '../../src/dateparser-inl.h', 277 '../../src/dateparser-inl.h',
278 '../../src/dateparser.cc', 278 '../../src/dateparser.cc',
279 '../../src/dateparser.h', 279 '../../src/dateparser.h',
280 '../../src/debug-agent.cc', 280 '../../src/debug-agent.cc',
281 '../../src/debug-agent.h', 281 '../../src/debug-agent.h',
282 '../../src/debug.cc', 282 '../../src/debug.cc',
283 '../../src/debug.h', 283 '../../src/debug.h',
284 '../../src/default-platform.cc',
285 '../../src/default-platform.h',
286 '../../src/deoptimizer.cc', 284 '../../src/deoptimizer.cc',
287 '../../src/deoptimizer.h', 285 '../../src/deoptimizer.h',
288 '../../src/disasm.h', 286 '../../src/disasm.h',
289 '../../src/disassembler.cc', 287 '../../src/disassembler.cc',
290 '../../src/disassembler.h', 288 '../../src/disassembler.h',
291 '../../src/diy-fp.cc', 289 '../../src/diy-fp.cc',
292 '../../src/diy-fp.h', 290 '../../src/diy-fp.h',
293 '../../src/double.h', 291 '../../src/double.h',
294 '../../src/dtoa.cc', 292 '../../src/dtoa.cc',
295 '../../src/dtoa.h', 293 '../../src/dtoa.h',
(...skipping 590 matching lines...) Expand 10 before | Expand all | Expand 10 after
886 'sources!': [ 884 'sources!': [
887 '../../src/i18n.cc', 885 '../../src/i18n.cc',
888 '../../src/i18n.h', 886 '../../src/i18n.h',
889 ], 887 ],
890 }], 888 }],
891 ['OS=="win" and v8_enable_i18n_support==1', { 889 ['OS=="win" and v8_enable_i18n_support==1', {
892 'dependencies': [ 890 'dependencies': [
893 '<(icu_gyp_path):icudata', 891 '<(icu_gyp_path):icudata',
894 ], 892 ],
895 }], 893 }],
896 ['v8_use_default_platform==0', {
897 'sources!': [
898 '../../src/default-platform.cc',
899 '../../src/default-platform.h',
900 ],
901 }],
902 ], 894 ],
903 }, 895 },
904 { 896 {
905 'target_name': 'js2c', 897 'target_name': 'js2c',
906 'type': 'none', 898 'type': 'none',
907 'conditions': [ 899 'conditions': [
908 ['want_separate_host_toolset==1', { 900 ['want_separate_host_toolset==1', {
909 'toolsets': ['host'], 901 'toolsets': ['host'],
910 }, { 902 }, {
911 'toolsets': ['target'], 903 'toolsets': ['target'],
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
1071 }], 1063 }],
1072 ['v8_compress_startup_data=="bz2"', { 1064 ['v8_compress_startup_data=="bz2"', {
1073 'libraries': [ 1065 'libraries': [
1074 '-lbz2', 1066 '-lbz2',
1075 ] 1067 ]
1076 }], 1068 }],
1077 ], 1069 ],
1078 }, 1070 },
1079 ], 1071 ],
1080 } 1072 }
OLDNEW
« no previous file with comments | « src/v8.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698