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

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

Issue 23469013: Reland "Add Chromium-style TimeDelta, Time and TimeTicks classes, and a new ElapsedTimer class." (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: REBASE Created 7 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « test/cctest/test-time.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 418 matching lines...) Expand 10 before | Expand all | Expand 10 after
429 '../../src/objects-visiting.cc', 429 '../../src/objects-visiting.cc',
430 '../../src/objects-visiting.h', 430 '../../src/objects-visiting.h',
431 '../../src/objects.cc', 431 '../../src/objects.cc',
432 '../../src/objects.h', 432 '../../src/objects.h',
433 '../../src/once.cc', 433 '../../src/once.cc',
434 '../../src/once.h', 434 '../../src/once.h',
435 '../../src/optimizing-compiler-thread.h', 435 '../../src/optimizing-compiler-thread.h',
436 '../../src/optimizing-compiler-thread.cc', 436 '../../src/optimizing-compiler-thread.cc',
437 '../../src/parser.cc', 437 '../../src/parser.cc',
438 '../../src/parser.h', 438 '../../src/parser.h',
439 '../../src/platform/elapsed-timer.h',
440 '../../src/platform/time.cc',
441 '../../src/platform/time.h',
439 '../../src/platform-posix.h', 442 '../../src/platform-posix.h',
440 '../../src/platform.h', 443 '../../src/platform.h',
441 '../../src/preparse-data-format.h', 444 '../../src/preparse-data-format.h',
442 '../../src/preparse-data.cc', 445 '../../src/preparse-data.cc',
443 '../../src/preparse-data.h', 446 '../../src/preparse-data.h',
444 '../../src/preparser.cc', 447 '../../src/preparser.cc',
445 '../../src/preparser.h', 448 '../../src/preparser.h',
446 '../../src/prettyprinter.cc', 449 '../../src/prettyprinter.cc',
447 '../../src/prettyprinter.h', 450 '../../src/prettyprinter.h',
448 '../../src/profile-generator-inl.h', 451 '../../src/profile-generator-inl.h',
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
681 }], 684 }],
682 ['OS=="linux"', { 685 ['OS=="linux"', {
683 'link_settings': { 686 'link_settings': {
684 'conditions': [ 687 'conditions': [
685 ['v8_compress_startup_data=="bz2"', { 688 ['v8_compress_startup_data=="bz2"', {
686 'libraries': [ 689 'libraries': [
687 '-lbz2', 690 '-lbz2',
688 ] 691 ]
689 }], 692 }],
690 ], 693 ],
694 'libraries': [
695 '-lrt'
696 ]
691 }, 697 },
692 'sources': [ ### gcmole(os:linux) ### 698 'sources': [ ### gcmole(os:linux) ###
693 '../../src/platform-linux.cc', 699 '../../src/platform-linux.cc',
694 '../../src/platform-posix.cc' 700 '../../src/platform-posix.cc'
695 ], 701 ],
696 } 702 }
697 ], 703 ],
698 ['OS=="android"', { 704 ['OS=="android"', {
699 'defines': [ 705 'defines': [
700 'CAN_USE_VFP_INSTRUCTIONS', 706 'CAN_USE_VFP_INSTRUCTIONS',
701 ], 707 ],
702 'sources': [ 708 'sources': [
703 '../../src/platform-posix.cc', 709 '../../src/platform-posix.cc'
704 ], 710 ],
705 'conditions': [ 711 'conditions': [
706 ['host_os=="mac"', { 712 ['host_os=="mac"', {
707 'target_conditions': [ 713 'target_conditions': [
708 ['_toolset=="host"', { 714 ['_toolset=="host"', {
709 'sources': [ 715 'sources': [
710 '../../src/platform-macos.cc' 716 '../../src/platform-macos.cc'
711 ] 717 ]
712 }, { 718 }, {
713 'sources': [ 719 'sources': [
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
756 ], 762 ],
757 } 763 }
758 ], 764 ],
759 ['OS=="solaris"', { 765 ['OS=="solaris"', {
760 'link_settings': { 766 'link_settings': {
761 'libraries': [ 767 'libraries': [
762 '-lsocket -lnsl', 768 '-lsocket -lnsl',
763 ]}, 769 ]},
764 'sources': [ 770 'sources': [
765 '../../src/platform-solaris.cc', 771 '../../src/platform-solaris.cc',
766 '../../src/platform-posix.cc', 772 '../../src/platform-posix.cc'
767 ], 773 ],
768 } 774 }
769 ], 775 ],
770 ['OS=="mac"', { 776 ['OS=="mac"', {
771 'sources': [ 777 'sources': [
772 '../../src/platform-macos.cc', 778 '../../src/platform-macos.cc',
773 '../../src/platform-posix.cc' 779 '../../src/platform-posix.cc'
774 ]}, 780 ]},
775 ], 781 ],
776 ['OS=="win"', { 782 ['OS=="win"', {
777 'variables': { 783 'variables': {
778 'gyp_generators': '<!(echo $GYP_GENERATORS)', 784 'gyp_generators': '<!(echo $GYP_GENERATORS)',
779 }, 785 },
780 'conditions': [ 786 'conditions': [
781 ['gyp_generators=="make"', { 787 ['gyp_generators=="make"', {
782 'variables': { 788 'variables': {
783 'build_env': '<!(uname -o)', 789 'build_env': '<!(uname -o)',
784 }, 790 },
785 'conditions': [ 791 'conditions': [
786 ['build_env=="Cygwin"', { 792 ['build_env=="Cygwin"', {
787 'sources': [ 793 'sources': [
788 '../../src/platform-cygwin.cc', 794 '../../src/platform-cygwin.cc',
789 '../../src/platform-posix.cc', 795 '../../src/platform-posix.cc'
790 ], 796 ],
791 }, { 797 }, {
792 'sources': [ 798 'sources': [
793 '../../src/platform-win32.cc', 799 '../../src/platform-win32.cc',
794 '../../src/win32-math.h',
795 '../../src/win32-math.cc', 800 '../../src/win32-math.cc',
801 '../../src/win32-math.h'
796 ], 802 ],
797 }], 803 }],
798 ], 804 ],
799 'link_settings': { 805 'link_settings': {
800 'libraries': [ '-lwinmm', '-lws2_32' ], 806 'libraries': [ '-lwinmm', '-lws2_32' ],
801 }, 807 },
802 }, { 808 }, {
803 'sources': [ 809 'sources': [
804 '../../src/platform-win32.cc', 810 '../../src/platform-win32.cc',
805 '../../src/win32-math.h',
806 '../../src/win32-math.cc', 811 '../../src/win32-math.cc',
812 '../../src/win32-math.h'
807 ], 813 ],
808 'msvs_disabled_warnings': [4351, 4355, 4800], 814 'msvs_disabled_warnings': [4351, 4355, 4800],
809 'link_settings': { 815 'link_settings': {
810 'libraries': [ '-lwinmm.lib', '-lws2_32.lib' ], 816 'libraries': [ '-lwinmm.lib', '-lws2_32.lib' ],
811 }, 817 },
812 }], 818 }],
813 ], 819 ],
814 }], 820 }],
815 ['component=="shared_library"', { 821 ['component=="shared_library"', {
816 'defines': [ 822 'defines': [
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
1033 }], 1039 }],
1034 ['v8_compress_startup_data=="bz2"', { 1040 ['v8_compress_startup_data=="bz2"', {
1035 'libraries': [ 1041 'libraries': [
1036 '-lbz2', 1042 '-lbz2',
1037 ] 1043 ]
1038 }], 1044 }],
1039 ], 1045 ],
1040 }, 1046 },
1041 ], 1047 ],
1042 } 1048 }
OLDNEW
« no previous file with comments | « test/cctest/test-time.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698