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

Side by Side Diff: runtime/vm/vm.gypi

Issue 8463032: Wait on the monotonic clock to guard against changes to the system clock. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address review comments Created 9 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 | « runtime/vm/thread_linux.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 (c) 2011, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'corelib_in_cc_file': 'corelib_in.cc', 7 'corelib_in_cc_file': 'corelib_in.cc',
8 'corelib_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_gen.cc', 8 'corelib_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_gen.cc',
9 'corelib_impl_in_cc_file': 'corelib_impl_in.cc', 9 'corelib_impl_in_cc_file': 'corelib_impl_in.cc',
10 'corelib_impl_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_impl_gen.cc', 10 'corelib_impl_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_impl_gen.cc',
(...skipping 13 matching lines...) Expand all
24 ['exclude', '_test\\.cc|h$'], 24 ['exclude', '_test\\.cc|h$'],
25 ], 25 ],
26 'include_dirs': [ 26 'include_dirs': [
27 '..', 27 '..',
28 ], 28 ],
29 'conditions': [ 29 'conditions': [
30 ['OS=="linux"', { 30 ['OS=="linux"', {
31 'link_settings': { 31 'link_settings': {
32 'libraries': [ 32 'libraries': [
33 '-lpthread', 33 '-lpthread',
34 '-lrt',
34 '-lcrypto', 35 '-lcrypto',
35 ], 36 ],
36 }, 37 },
37 }], 38 }],
38 ['OS=="mac"', { 39 ['OS=="mac"', {
39 'link_settings': { 40 'link_settings': {
40 'xcode_settings': { 41 'xcode_settings': {
41 'OTHER_LDFLAGS': [ 42 'OTHER_LDFLAGS': [
42 '-lcrypto', 43 '-lcrypto',
43 ], 44 ],
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 '--output', '<(snapshot_test_dat_file)', 195 '--output', '<(snapshot_test_dat_file)',
195 '--input_cc', '<(snapshot_test_in_dat_file)', 196 '--input_cc', '<(snapshot_test_in_dat_file)',
196 '<(snapshot_test_dart_file)', 197 '<(snapshot_test_dart_file)',
197 ], 198 ],
198 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' 199 'message': 'Generating ''<(snapshot_test_dat_file)'' file.'
199 }, 200 },
200 ] 201 ]
201 }, 202 },
202 ] 203 ]
203 } 204 }
OLDNEW
« no previous file with comments | « runtime/vm/thread_linux.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698