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

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

Issue 97073004: Make Time functions go through the Platform layer. (Closed) Base URL: git://github.com/v8/v8.git@bleeding_edge
Patch Set: Created 7 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
« no previous file with comments | « src/platform/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 461 matching lines...) Expand 10 before | Expand all | Expand 10 after
472 '../../src/objects-visiting.cc', 472 '../../src/objects-visiting.cc',
473 '../../src/objects-visiting.h', 473 '../../src/objects-visiting.h',
474 '../../src/objects.cc', 474 '../../src/objects.cc',
475 '../../src/objects.h', 475 '../../src/objects.h',
476 '../../src/once.cc', 476 '../../src/once.cc',
477 '../../src/once.h', 477 '../../src/once.h',
478 '../../src/optimizing-compiler-thread.h', 478 '../../src/optimizing-compiler-thread.h',
479 '../../src/optimizing-compiler-thread.cc', 479 '../../src/optimizing-compiler-thread.cc',
480 '../../src/parser.cc', 480 '../../src/parser.cc',
481 '../../src/parser.h', 481 '../../src/parser.h',
482 '../../src/platform/default-platform-time.cc',
482 '../../src/platform/elapsed-timer.h', 483 '../../src/platform/elapsed-timer.h',
483 '../../src/platform/time.cc', 484 '../../src/platform/time.cc',
484 '../../src/platform/time.h', 485 '../../src/platform/time.h',
485 '../../src/platform.h', 486 '../../src/platform.h',
486 '../../src/platform/condition-variable.cc', 487 '../../src/platform/condition-variable.cc',
487 '../../src/platform/condition-variable.h', 488 '../../src/platform/condition-variable.h',
488 '../../src/platform/mutex.cc', 489 '../../src/platform/mutex.cc',
489 '../../src/platform/mutex.h', 490 '../../src/platform/mutex.h',
490 '../../src/platform/semaphore.cc', 491 '../../src/platform/semaphore.cc',
491 '../../src/platform/semaphore.h', 492 '../../src/platform/semaphore.h',
(...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after
920 }], 921 }],
921 ['OS=="win" and v8_enable_i18n_support==1', { 922 ['OS=="win" and v8_enable_i18n_support==1', {
922 'dependencies': [ 923 'dependencies': [
923 '<(icu_gyp_path):icudata', 924 '<(icu_gyp_path):icudata',
924 ], 925 ],
925 }], 926 }],
926 ['v8_use_default_platform==0', { 927 ['v8_use_default_platform==0', {
927 'sources!': [ 928 'sources!': [
928 '../../src/default-platform.cc', 929 '../../src/default-platform.cc',
929 '../../src/default-platform.h', 930 '../../src/default-platform.h',
931 '../../src/platform/default-platform-time.cc',
930 ], 932 ],
931 }], 933 }],
932 ], 934 ],
933 }, 935 },
934 { 936 {
935 'target_name': 'js2c', 937 'target_name': 'js2c',
936 'type': 'none', 938 'type': 'none',
937 'conditions': [ 939 'conditions': [
938 ['want_separate_host_toolset==1', { 940 ['want_separate_host_toolset==1', {
939 'toolsets': ['host'], 941 'toolsets': ['host'],
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
1102 }], 1104 }],
1103 ['v8_compress_startup_data=="bz2"', { 1105 ['v8_compress_startup_data=="bz2"', {
1104 'libraries': [ 1106 'libraries': [
1105 '-lbz2', 1107 '-lbz2',
1106 ] 1108 ]
1107 }], 1109 }],
1108 ], 1110 ],
1109 }, 1111 },
1110 ], 1112 ],
1111 } 1113 }
OLDNEW
« no previous file with comments | « src/platform/time.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698