Index: gyp/most.gyp |
diff --git a/gyp/most.gyp b/gyp/most.gyp |
index b914bc5f89440c7b861cb3b9181145355f95aec8..d94023125fd32190876477bff854778b47b67189 100644 |
--- a/gyp/most.gyp |
+++ b/gyp/most.gyp |
@@ -9,15 +9,8 @@ |
'target_name': 'most', |
'type': 'none', |
'dependencies': [ |
- # The minimal set of static libraries for basic Skia functionality. |
- 'skia_lib.gyp:skia_lib', |
- |
- 'bench.gyp:bench', |
- 'gm.gyp:gm', |
+ 'all_tests', |
'SampleApp.gyp:SampleApp', |
- 'tests.gyp:tests', |
- 'tools.gyp:tools', |
- 'pathops_unittest.gyp:*', |
'skpskgr_test.gyp:*', |
# 'pdfviewer.gyp:pdfviewer', |
], |
@@ -31,5 +24,18 @@ |
}], |
], |
}, |
+ { |
+ # Target for systems that can't run SampleApp. |
+ 'target_name': 'all_tests', |
+ 'type': 'none', |
+ 'dependencies': [ |
+ 'skia_lib.gyp:skia_lib', |
scroggo
2014/02/18 21:46:24
skia_lib is not really a test. Better name for all
borenet
2014/02/18 22:15:36
I'm not sure why we need this target anyway, and I
hal.canary
2014/02/19 15:21:03
True. I don't need it here since all of these dep
hal.canary
2014/02/19 15:21:03
I added a variable to disable by default building
|
+ 'tests.gyp:tests', |
+ 'tools.gyp:tools', |
+ 'bench.gyp:bench', |
+ 'gm.gyp:gm', |
+ 'pathops_unittest.gyp:pathops_unittest', |
+ ] |
+ }, |
], |
} |