SkPDF/Bench: add bench for SkPDFSharedStream (deflate)
[platform/upstream/libSkiaSharp.git] / gyp / bench.gyp
index 595d77c..c235702 100644 (file)
@@ -1,3 +1,7 @@
+# Copyright 2015 Google Inc.
+#
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
 # GYP file to build performance testbench.
 #
 {
   ],
   'targets': [
     {
-      'target_name': 'bench',
+      'target_name': 'nanobench',
       'type': 'executable',
-      'include_dirs' : [
-        '../src/core',
-        '../src/effects',
-        '../src/utils',
-      ],
-      'dependencies': [
-        'skia_lib.gyp:skia_lib',
-        'bench_timer',
-        'flags.gyp:flags',
-      ],
       'sources': [
-        '../bench/AAClipBench.cpp',
-        '../bench/BicubicBench.cpp',
-        '../bench/BitmapBench.cpp',
-        '../bench/BitmapRectBench.cpp',
-        '../bench/BitmapScaleBench.cpp',
-        '../bench/BlurBench.cpp',
-        '../bench/BlurImageFilterBench.cpp',
-        '../bench/BlurRectBench.cpp',
-        '../bench/BlurRoundRectBench.cpp',
-        '../bench/ChartBench.cpp',
-        '../bench/ChecksumBench.cpp',
-        '../bench/ChromeBench.cpp',
-        '../bench/CmapBench.cpp',
-        '../bench/ColorFilterBench.cpp',
-        '../bench/CoverageBench.cpp',
-        '../bench/DashBench.cpp',
-        '../bench/DecodeBench.cpp',
-        '../bench/DeferredCanvasBench.cpp',
-        '../bench/DeferredSurfaceCopyBench.cpp',
-        '../bench/DisplacementBench.cpp',
-        '../bench/FSRectBench.cpp',
-        '../bench/FontCacheBench.cpp',
-        '../bench/FontScalerBench.cpp',
-        '../bench/GameBench.cpp',
-        '../bench/GrMemoryPoolBench.cpp',
-        '../bench/GrResourceCacheBench.cpp',
-        '../bench/GradientBench.cpp',
-        '../bench/HairlinePathBench.cpp',
-        '../bench/ImageCacheBench.cpp',
-        '../bench/ImageDecodeBench.cpp',
-        '../bench/InterpBench.cpp',
-        '../bench/LightingBench.cpp',
-        '../bench/LineBench.cpp',
-        '../bench/MagnifierBench.cpp',
-        '../bench/MathBench.cpp',
-        '../bench/Matrix44Bench.cpp',
-        '../bench/MatrixBench.cpp',
-        '../bench/MatrixConvolutionBench.cpp',
-        '../bench/MemoryBench.cpp',
-        '../bench/MemsetBench.cpp',
-        '../bench/MergeBench.cpp',
-        '../bench/MorphologyBench.cpp',
-        '../bench/MutexBench.cpp',
-        '../bench/PathBench.cpp',
-        '../bench/PathIterBench.cpp',
-        '../bench/PathUtilsBench.cpp',
-        '../bench/PerlinNoiseBench.cpp',
-        '../bench/PicturePlaybackBench.cpp',
-        '../bench/PictureRecordBench.cpp',
-        '../bench/PremulAndUnpremulAlphaOpsBench.cpp',
-        '../bench/RTreeBench.cpp',
-        '../bench/ReadPixBench.cpp',
-        '../bench/RectBench.cpp',
-        '../bench/RectoriBench.cpp',
-        '../bench/RefCntBench.cpp',
-        '../bench/RegionBench.cpp',
-        '../bench/RegionContainBench.cpp',
-        '../bench/RepeatTileBench.cpp',
-        '../bench/ScalarBench.cpp',
-        '../bench/ShaderMaskBench.cpp',
-        '../bench/SkipZeroesBench.cpp',
-        '../bench/SortBench.cpp',
-        '../bench/StrokeBench.cpp',
-        '../bench/TableBench.cpp',
-        '../bench/TextBench.cpp',
-        '../bench/TileBench.cpp',
-        '../bench/VertBench.cpp',
-        '../bench/WritePixelsBench.cpp',
-        '../bench/WriterBench.cpp',
-        '../bench/XfermodeBench.cpp',
-
-        '../bench/SkBenchLogger.cpp',
-        '../bench/SkBenchLogger.h',
-        '../bench/SkBenchmark.cpp',
-        '../bench/SkBenchmark.h',
-        '../bench/benchmain.cpp',
+        '../gm/gm.cpp',
       ],
-      'conditions': [
-        ['skia_gpu == 1',
-          {
-            'include_dirs' : [
-              '../src/gpu',
-            ],
-          },
-        ],
-      ],
-    },
-    {
-      'target_name' : 'bench_timer',
-      'type': 'static_library',
-      'sources': [
-        '../bench/BenchTimer.h',
-        '../bench/BenchTimer.cpp',
-        '../bench/BenchSysTimer_mach.h',
-        '../bench/BenchSysTimer_mach.cpp',
-        '../bench/BenchSysTimer_posix.h',
-        '../bench/BenchSysTimer_posix.cpp',
-        '../bench/BenchSysTimer_windows.h',
-        '../bench/BenchSysTimer_windows.cpp',
-      ],
-        'include_dirs': [
-        '../src/core',
-        '../src/gpu',
+      'includes': [
+        'bench.gypi',
+        'gmslides.gypi',
       ],
       'dependencies': [
+        'flags.gyp:flags_common',
+        'jsoncpp.gyp:jsoncpp',
         'skia_lib.gyp:skia_lib',
+        'tools.gyp:crash_handler',
+        'tools.gyp:proc_stats',
+        'tools.gyp:thermal_manager',
+        'tools.gyp:timer',
       ],
       'conditions': [
-        [ 'skia_os not in ["mac", "ios"]', {
-          'sources!': [
-            '../bench/BenchSysTimer_mach.h',
-            '../bench/BenchSysTimer_mach.cpp',
-          ],
-        }],
-        [ 'skia_os not in ["linux", "freebsd", "openbsd", "solaris", "android", "chromeos"]', {
-          'sources!': [
-            '../bench/BenchSysTimer_posix.h',
-            '../bench/BenchSysTimer_posix.cpp',
+        ['skia_android_framework', {
+          'libraries': [
+            'skia_static.a',
+            '-lhwui',
           ],
-        }],
-        [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', {
-          'link_settings': {
-            'libraries': [
-              '-lrt',
-            ],
-          },
-        }],
-        [ 'skia_os != "win"', {
-          'sources!': [
-            '../bench/BenchSysTimer_windows.h',
-            '../bench/BenchSysTimer_windows.cpp',
+          'include_dirs': [
+            '../../../frameworks/base/libs/hwui/',
           ],
-        }],
-        ['skia_gpu == 1', {
-          'sources': [
-            '../bench/BenchGpuTimer_gl.h',
-            '../bench/BenchGpuTimer_gl.cpp',
+          'dependencies': [
+            'tools.gyp:android_utils',
           ],
         }],
       ],
-    }
+    },
   ],
 }
-
-# Local Variables:
-# tab-width:2
-# indent-tabs-mode:nil
-# End:
-# vim: set expandtab tabstop=2 shiftwidth=2: