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

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

Issue 23490015: Reland^2 "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: Some windows cleanup 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': [
714 '../../src/platform-linux.cc' 720 '../../src/platform-linux.cc'
715 ] 721 ]
716 }], 722 }],
717 ], 723 ],
718 }, { 724 }, {
725 'link_settings': {
726 'target_conditions': [
727 ['_toolset=="host"', {
728 'libraries': [
729 '-lrt'
730 ]
731 }]
732 ]
733 },
719 'sources': [ 734 'sources': [
720 '../../src/platform-linux.cc' 735 '../../src/platform-linux.cc'
721 ] 736 ]
722 }], 737 }],
723 ], 738 ],
724 }, 739 },
725 ], 740 ],
726 ['OS=="freebsd"', { 741 ['OS=="freebsd"', {
727 'link_settings': { 742 'link_settings': {
728 'libraries': [ 743 'libraries': [
(...skipping 27 matching lines...) Expand all
756 ], 771 ],
757 } 772 }
758 ], 773 ],
759 ['OS=="solaris"', { 774 ['OS=="solaris"', {
760 'link_settings': { 775 'link_settings': {
761 'libraries': [ 776 'libraries': [
762 '-lsocket -lnsl', 777 '-lsocket -lnsl',
763 ]}, 778 ]},
764 'sources': [ 779 'sources': [
765 '../../src/platform-solaris.cc', 780 '../../src/platform-solaris.cc',
766 '../../src/platform-posix.cc', 781 '../../src/platform-posix.cc'
767 ], 782 ],
768 } 783 }
769 ], 784 ],
770 ['OS=="mac"', { 785 ['OS=="mac"', {
771 'sources': [ 786 'sources': [
772 '../../src/platform-macos.cc', 787 '../../src/platform-macos.cc',
773 '../../src/platform-posix.cc' 788 '../../src/platform-posix.cc'
774 ]}, 789 ]},
775 ], 790 ],
776 ['OS=="win"', { 791 ['OS=="win"', {
777 'variables': { 792 'variables': {
778 'gyp_generators': '<!(echo $GYP_GENERATORS)', 793 'gyp_generators': '<!(echo $GYP_GENERATORS)',
779 }, 794 },
780 'conditions': [ 795 'conditions': [
781 ['gyp_generators=="make"', { 796 ['gyp_generators=="make"', {
782 'variables': { 797 'variables': {
783 'build_env': '<!(uname -o)', 798 'build_env': '<!(uname -o)',
784 }, 799 },
785 'conditions': [ 800 'conditions': [
786 ['build_env=="Cygwin"', { 801 ['build_env=="Cygwin"', {
787 'sources': [ 802 'sources': [
788 '../../src/platform-cygwin.cc', 803 '../../src/platform-cygwin.cc',
789 '../../src/platform-posix.cc', 804 '../../src/platform-posix.cc'
790 ], 805 ],
791 }, { 806 }, {
792 'sources': [ 807 'sources': [
793 '../../src/platform-win32.cc', 808 '../../src/platform-win32.cc',
794 '../../src/win32-math.h',
795 '../../src/win32-math.cc', 809 '../../src/win32-math.cc',
810 '../../src/win32-math.h'
796 ], 811 ],
797 }], 812 }],
798 ], 813 ],
799 'link_settings': { 814 'link_settings': {
800 'libraries': [ '-lwinmm', '-lws2_32' ], 815 'libraries': [ '-lwinmm', '-lws2_32' ],
801 }, 816 },
802 }, { 817 }, {
803 'sources': [ 818 'sources': [
804 '../../src/platform-win32.cc', 819 '../../src/platform-win32.cc',
805 '../../src/win32-math.h',
806 '../../src/win32-math.cc', 820 '../../src/win32-math.cc',
821 '../../src/win32-math.h'
807 ], 822 ],
808 'msvs_disabled_warnings': [4351, 4355, 4800], 823 'msvs_disabled_warnings': [4351, 4355, 4800],
809 'link_settings': { 824 'link_settings': {
810 'libraries': [ '-lwinmm.lib', '-lws2_32.lib' ], 825 'libraries': [ '-lwinmm.lib', '-lws2_32.lib' ],
811 }, 826 },
812 }], 827 }],
813 ], 828 ],
814 }], 829 }],
815 ['component=="shared_library"', { 830 ['component=="shared_library"', {
816 'defines': [ 831 'defines': [
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
1033 }], 1048 }],
1034 ['v8_compress_startup_data=="bz2"', { 1049 ['v8_compress_startup_data=="bz2"', {
1035 'libraries': [ 1050 'libraries': [
1036 '-lbz2', 1051 '-lbz2',
1037 ] 1052 ]
1038 }], 1053 }],
1039 ], 1054 ],
1040 }, 1055 },
1041 ], 1056 ],
1042 } 1057 }
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