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

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

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