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

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

Issue 78453003: Reland r17877 - 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 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 '../../src/data-flow.h', 273 '../../src/data-flow.h',
274 '../../src/date.cc', 274 '../../src/date.cc',
275 '../../src/date.h', 275 '../../src/date.h',
276 '../../src/dateparser-inl.h', 276 '../../src/dateparser-inl.h',
277 '../../src/dateparser.cc', 277 '../../src/dateparser.cc',
278 '../../src/dateparser.h', 278 '../../src/dateparser.h',
279 '../../src/debug-agent.cc', 279 '../../src/debug-agent.cc',
280 '../../src/debug-agent.h', 280 '../../src/debug-agent.h',
281 '../../src/debug.cc', 281 '../../src/debug.cc',
282 '../../src/debug.h', 282 '../../src/debug.h',
283 '../../src/default-platform.cc',
284 '../../src/default-platform.h',
283 '../../src/deoptimizer.cc', 285 '../../src/deoptimizer.cc',
284 '../../src/deoptimizer.h', 286 '../../src/deoptimizer.h',
285 '../../src/disasm.h', 287 '../../src/disasm.h',
286 '../../src/disassembler.cc', 288 '../../src/disassembler.cc',
287 '../../src/disassembler.h', 289 '../../src/disassembler.h',
288 '../../src/diy-fp.cc', 290 '../../src/diy-fp.cc',
289 '../../src/diy-fp.h', 291 '../../src/diy-fp.h',
290 '../../src/double.h', 292 '../../src/double.h',
291 '../../src/dtoa.cc', 293 '../../src/dtoa.cc',
292 '../../src/dtoa.h', 294 '../../src/dtoa.h',
(...skipping 586 matching lines...) Expand 10 before | Expand all | Expand 10 after
879 'sources!': [ 881 'sources!': [
880 '../../src/i18n.cc', 882 '../../src/i18n.cc',
881 '../../src/i18n.h', 883 '../../src/i18n.h',
882 ], 884 ],
883 }], 885 }],
884 ['OS=="win" and v8_enable_i18n_support==1', { 886 ['OS=="win" and v8_enable_i18n_support==1', {
885 'dependencies': [ 887 'dependencies': [
886 '<(icu_gyp_path):icudata', 888 '<(icu_gyp_path):icudata',
887 ], 889 ],
888 }], 890 }],
891 ['v8_use_default_platform==0', {
892 'sources!': [
893 '../../src/default-platform.cc',
894 '../../src/default-platform.h',
895 ],
896 }],
889 ], 897 ],
890 }, 898 },
891 { 899 {
892 'target_name': 'js2c', 900 'target_name': 'js2c',
893 'type': 'none', 901 'type': 'none',
894 'conditions': [ 902 'conditions': [
895 ['want_separate_host_toolset==1', { 903 ['want_separate_host_toolset==1', {
896 'toolsets': ['host'], 904 'toolsets': ['host'],
897 }, { 905 }, {
898 'toolsets': ['target'], 906 'toolsets': ['target'],
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
1058 }], 1066 }],
1059 ['v8_compress_startup_data=="bz2"', { 1067 ['v8_compress_startup_data=="bz2"', {
1060 'libraries': [ 1068 'libraries': [
1061 '-lbz2', 1069 '-lbz2',
1062 ] 1070 ]
1063 }], 1071 }],
1064 ], 1072 ],
1065 }, 1073 },
1066 ], 1074 ],
1067 } 1075 }
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