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

Side by Side Diff: gyp/bench.gyp

Issue 391193003: nanobench on Windows: try compiler barriers around timer instead. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 5 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 | tools/timer/SysTimer_windows.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # GYP file to build performance testbench. 1 # GYP file to build performance testbench.
2 # 2 #
3 { 3 {
4 'includes': [ 4 'includes': [
5 'apptype_console.gypi', 5 'apptype_console.gypi',
6 ], 6 ],
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'bench', 9 'target_name': 'bench',
10 'type': 'executable', 10 'type': 'executable',
(...skipping 30 matching lines...) Expand all
41 '../bench/ResultsWriter.cpp', 41 '../bench/ResultsWriter.cpp',
42 ], 42 ],
43 'includes': [ 'bench.gypi' ], 43 'includes': [ 'bench.gypi' ],
44 'dependencies': [ 44 'dependencies': [
45 'flags.gyp:flags', 45 'flags.gyp:flags',
46 'jsoncpp.gyp:jsoncpp', 46 'jsoncpp.gyp:jsoncpp',
47 'skia_lib.gyp:skia_lib', 47 'skia_lib.gyp:skia_lib',
48 'tools.gyp:crash_handler', 48 'tools.gyp:crash_handler',
49 'tools.gyp:timer', 49 'tools.gyp:timer',
50 ], 50 ],
51
52 # Experiment to see if LTCG is the key difference leading to Windows infin ite loops.
53 'msvs_settings': { 'VCLinkerTool': { 'LinkTimeCodeGeneration': '0' } },
54 }, 51 },
55 ], 52 ],
56 } 53 }
OLDNEW
« no previous file with comments | « no previous file | tools/timer/SysTimer_windows.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698