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

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

Issue 1474543004: Implement Fast Accessor Builder (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Review feedback. Created 5 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
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 358 matching lines...) Expand 10 before | Expand all | Expand 10 after
369 }, 369 },
370 'include_dirs+': [ 370 'include_dirs+': [
371 '../..', 371 '../..',
372 ], 372 ],
373 'defines': [ 373 'defines': [
374 # TODO(jochen): Remove again after this is globally turned on. 374 # TODO(jochen): Remove again after this is globally turned on.
375 'V8_IMMINENT_DEPRECATION_WARNINGS', 375 'V8_IMMINENT_DEPRECATION_WARNINGS',
376 ], 376 ],
377 'sources': [ ### gcmole(all) ### 377 'sources': [ ### gcmole(all) ###
378 '../../include/v8-debug.h', 378 '../../include/v8-debug.h',
379 '../../include/v8-experimental.h',
379 '../../include/v8-platform.h', 380 '../../include/v8-platform.h',
380 '../../include/v8-profiler.h', 381 '../../include/v8-profiler.h',
381 '../../include/v8-testing.h', 382 '../../include/v8-testing.h',
382 '../../include/v8-util.h', 383 '../../include/v8-util.h',
383 '../../include/v8-version.h', 384 '../../include/v8-version.h',
384 '../../include/v8.h', 385 '../../include/v8.h',
385 '../../include/v8config.h', 386 '../../include/v8config.h',
386 '../../src/accessors.cc', 387 '../../src/accessors.cc',
387 '../../src/accessors.h', 388 '../../src/accessors.h',
388 '../../src/address-map.cc', 389 '../../src/address-map.cc',
389 '../../src/address-map.h', 390 '../../src/address-map.h',
390 '../../src/allocation.cc', 391 '../../src/allocation.cc',
391 '../../src/allocation.h', 392 '../../src/allocation.h',
392 '../../src/allocation-site-scopes.cc', 393 '../../src/allocation-site-scopes.cc',
393 '../../src/allocation-site-scopes.h', 394 '../../src/allocation-site-scopes.h',
395 '../../src/api-experimental.cc',
396 '../../src/api-experimental.h',
394 '../../src/api.cc', 397 '../../src/api.cc',
395 '../../src/api.h', 398 '../../src/api.h',
396 '../../src/api-natives.cc', 399 '../../src/api-natives.cc',
397 '../../src/api-natives.h', 400 '../../src/api-natives.h',
398 '../../src/arguments.cc', 401 '../../src/arguments.cc',
399 '../../src/arguments.h', 402 '../../src/arguments.h',
400 '../../src/assembler.cc', 403 '../../src/assembler.cc',
401 '../../src/assembler.h', 404 '../../src/assembler.h',
402 '../../src/assert-scope.h', 405 '../../src/assert-scope.h',
403 '../../src/assert-scope.cc', 406 '../../src/assert-scope.cc',
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
495 '../../src/compiler/control-equivalence.h', 498 '../../src/compiler/control-equivalence.h',
496 '../../src/compiler/control-flow-optimizer.cc', 499 '../../src/compiler/control-flow-optimizer.cc',
497 '../../src/compiler/control-flow-optimizer.h', 500 '../../src/compiler/control-flow-optimizer.h',
498 '../../src/compiler/dead-code-elimination.cc', 501 '../../src/compiler/dead-code-elimination.cc',
499 '../../src/compiler/dead-code-elimination.h', 502 '../../src/compiler/dead-code-elimination.h',
500 '../../src/compiler/diamond.h', 503 '../../src/compiler/diamond.h',
501 '../../src/compiler/escape-analysis.cc', 504 '../../src/compiler/escape-analysis.cc',
502 '../../src/compiler/escape-analysis.h', 505 '../../src/compiler/escape-analysis.h',
503 "../../src/compiler/escape-analysis-reducer.cc", 506 "../../src/compiler/escape-analysis-reducer.cc",
504 "../../src/compiler/escape-analysis-reducer.h", 507 "../../src/compiler/escape-analysis-reducer.h",
508 '../../src/compiler/fast-accessor-assembler.cc',
509 '../../src/compiler/fast-accessor-assembler.h',
505 '../../src/compiler/frame.cc', 510 '../../src/compiler/frame.cc',
506 '../../src/compiler/frame.h', 511 '../../src/compiler/frame.h',
507 '../../src/compiler/frame-elider.cc', 512 '../../src/compiler/frame-elider.cc',
508 '../../src/compiler/frame-elider.h', 513 '../../src/compiler/frame-elider.h',
509 "../../src/compiler/frame-states.cc", 514 "../../src/compiler/frame-states.cc",
510 "../../src/compiler/frame-states.h", 515 "../../src/compiler/frame-states.h",
511 '../../src/compiler/gap-resolver.cc', 516 '../../src/compiler/gap-resolver.cc',
512 '../../src/compiler/gap-resolver.h', 517 '../../src/compiler/gap-resolver.h',
513 '../../src/compiler/graph-reducer.cc', 518 '../../src/compiler/graph-reducer.cc',
514 '../../src/compiler/graph-reducer.h', 519 '../../src/compiler/graph-reducer.h',
(...skipping 1600 matching lines...) Expand 10 before | Expand all | Expand 10 after
2115 }], 2120 }],
2116 ['want_separate_host_toolset==1', { 2121 ['want_separate_host_toolset==1', {
2117 'toolsets': ['host'], 2122 'toolsets': ['host'],
2118 }, { 2123 }, {
2119 'toolsets': ['target'], 2124 'toolsets': ['target'],
2120 }], 2125 }],
2121 ], 2126 ],
2122 }, 2127 },
2123 ], 2128 ],
2124 } 2129 }
OLDNEW
« src/compiler/fast-accessor-assembler.cc ('K') | « test/cctest/test-api-fast-accessor-builder.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698