aboutsummaryrefslogtreecommitdiffhomepage
path: root/gyp/tools.gyp
diff options
context:
space:
mode:
Diffstat (limited to 'gyp/tools.gyp')
-rw-r--r--gyp/tools.gyp32
1 files changed, 30 insertions, 2 deletions
diff --git a/gyp/tools.gyp b/gyp/tools.gyp
index a4f8cfd62a..c25543ef2d 100644
--- a/gyp/tools.gyp
+++ b/gyp/tools.gyp
@@ -132,11 +132,39 @@
{
'target_name' : 'timer',
'type': 'static_library',
- 'sources': [ '../tools/timer/Timer.cpp' ],
+ 'sources': [
+ '../tools/timer/Timer.cpp',
+ '../tools/timer/TimerData.cpp',
+ ],
+ 'include_dirs': [
+ '../include/private',
+ '../src/core',
+ '../src/gpu',
+ ],
'direct_dependent_settings': {
'include_dirs': ['../tools/timer'],
},
- 'dependencies': [ 'skia_lib.gyp:skia_lib' ],
+ 'dependencies': [
+ 'skia_lib.gyp:skia_lib',
+ 'jsoncpp.gyp:jsoncpp',
+ ],
+ 'conditions': [
+ ['skia_gpu == 1', {
+ 'sources': [ '../tools/timer/GpuTimer.cpp' ],
+ }],
+ [ 'skia_os in ["mac", "ios"]', {
+ 'sources': [ '../tools/timer/SysTimer_mach.cpp' ],
+ }],
+ [ 'skia_os == "win"', {
+ 'sources': [ '../tools/timer/SysTimer_windows.cpp' ],
+ }],
+ [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "android", "chromeos"]', {
+ 'sources': [ '../tools/timer/SysTimer_posix.cpp' ],
+ }],
+ [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', {
+ 'link_settings': { 'libraries': [ '-lrt' ] },
+ }],
+ ],
},
{
'target_name': 'skdiff',