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

Side by Side Diff: util/util.gyp

Issue 940793002: win: add equivalent of gettimeofday (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: . Created 5 years, 10 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
« no previous file with comments | « no previous file | util/win/time.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Crashpad Authors. All rights reserved. 1 # Copyright 2014 The Crashpad Authors. All rights reserved.
2 # 2 #
3 # Licensed under the Apache License, Version 2.0 (the "License"); 3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License. 4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at 5 # You may obtain a copy of the License at
6 # 6 #
7 # http://www.apache.org/licenses/LICENSE-2.0 7 # http://www.apache.org/licenses/LICENSE-2.0
8 # 8 #
9 # Unless required by applicable law or agreed to in writing, software 9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS, 10 # distributed under the License is distributed on an "AS IS" BASIS,
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 'stdlib/strlcpy.cc', 120 'stdlib/strlcpy.cc',
121 'stdlib/strlcpy.h', 121 'stdlib/strlcpy.h',
122 'stdlib/strnlen.cc', 122 'stdlib/strnlen.cc',
123 'stdlib/strnlen.h', 123 'stdlib/strnlen.h',
124 'synchronization/semaphore_mac.cc', 124 'synchronization/semaphore_mac.cc',
125 'synchronization/semaphore_posix.cc', 125 'synchronization/semaphore_posix.cc',
126 'synchronization/semaphore_win.cc', 126 'synchronization/semaphore_win.cc',
127 'synchronization/semaphore.h', 127 'synchronization/semaphore.h',
128 'win/scoped_handle.cc', 128 'win/scoped_handle.cc',
129 'win/scoped_handle.h', 129 'win/scoped_handle.h',
130 'win/time.cc',
131 'win/time.h',
130 ], 132 ],
131 'conditions': [ 133 'conditions': [
132 ['OS=="mac"', { 134 ['OS=="mac"', {
133 'conditions': [ 135 'conditions': [
134 ['GENERATOR=="ninja"', { 136 ['GENERATOR=="ninja"', {
135 # ninja’s rules can’t deal with sources that have paths relative 137 # ninja’s rules can’t deal with sources that have paths relative
136 # to environment variables like SDKROOT. Copy the .defs files out 138 # to environment variables like SDKROOT. Copy the .defs files out
137 # of SDKROOT and into a place they can be referenced without any 139 # of SDKROOT and into a place they can be referenced without any
138 # environment variables. 140 # environment variables.
139 'copies': [ 141 'copies': [
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 'posix/symbolic_constants_posix_test.cc', 297 'posix/symbolic_constants_posix_test.cc',
296 'stdlib/string_number_conversion_test.cc', 298 'stdlib/string_number_conversion_test.cc',
297 'stdlib/strlcpy_test.cc', 299 'stdlib/strlcpy_test.cc',
298 'stdlib/strnlen_test.cc', 300 'stdlib/strnlen_test.cc',
299 'synchronization/semaphore_test.cc', 301 'synchronization/semaphore_test.cc',
300 'test/executable_path_test.cc', 302 'test/executable_path_test.cc',
301 'test/mac/mach_multiprocess_test.cc', 303 'test/mac/mach_multiprocess_test.cc',
302 'test/multiprocess_exec_test.cc', 304 'test/multiprocess_exec_test.cc',
303 'test/multiprocess_posix_test.cc', 305 'test/multiprocess_posix_test.cc',
304 'test/scoped_temp_dir_test.cc', 306 'test/scoped_temp_dir_test.cc',
307 'win/time_test.cc',
305 ], 308 ],
306 'conditions': [ 309 'conditions': [
307 ['OS=="mac"', { 310 ['OS=="mac"', {
308 'link_settings': { 311 'link_settings': {
309 'libraries': [ 312 'libraries': [
310 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', 313 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
311 ], 314 ],
312 }, 315 },
313 }], 316 }],
314 ], 317 ],
315 }, 318 },
316 { 319 {
317 'target_name': 'util_test_multiprocess_exec_test_child', 320 'target_name': 'util_test_multiprocess_exec_test_child',
318 'type': 'executable', 321 'type': 'executable',
319 'sources': [ 322 'sources': [
320 'test/multiprocess_exec_test_child.cc', 323 'test/multiprocess_exec_test_child.cc',
321 ], 324 ],
322 }, 325 },
323 ], 326 ],
324 } 327 }
OLDNEW
« no previous file with comments | « no previous file | util/win/time.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698