| OLD | NEW |
| 1 # Copyright 2015 Google Inc. | 1 # Copyright 2015 Google Inc. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 # GYP file to build visual bench tool | 5 # GYP file to build visual bench tool |
| 6 { | 6 { |
| 7 'targets': [ | 7 'targets': [ |
| 8 { | 8 { |
| 9 'target_name': 'visualbench', | 9 'target_name': 'visualbench', |
| 10 'type': 'executable', | 10 'type': 'executable', |
| 11 'mac_bundle' : 1, | 11 'mac_bundle' : 1, |
| 12 'include_dirs' : [ | 12 'include_dirs' : [ |
| 13 '../include/gpu', | 13 '../include/gpu', |
| 14 '../src/core', |
| 14 '../src/images', | 15 '../src/images', |
| 15 ], | 16 ], |
| 16 'sources': [ | 17 'sources': [ |
| 17 '../tools/VisualBench.h', | 18 '../tools/VisualBench.h', |
| 18 '../tools/VisualBench.cpp', | 19 '../tools/VisualBench.cpp', |
| 19 '../src/images/SkForceLinking.cpp', | 20 '../src/images/SkForceLinking.cpp', |
| 20 ], | 21 ], |
| 21 'dependencies': [ | 22 'dependencies': [ |
| 22 'flags.gyp:flags_common', | 23 'flags.gyp:flags_common', |
| 23 'images.gyp:images', | 24 'images.gyp:images', |
| 24 'skia_lib.gyp:skia_lib', | 25 'skia_lib.gyp:skia_lib', |
| 26 'tools.gyp:proc_stats', |
| 25 'tools.gyp:timer', | 27 'tools.gyp:timer', |
| 26 'views.gyp:views', | 28 'views.gyp:views', |
| 27 ], | 29 ], |
| 28 'conditions' : [ | 30 'conditions' : [ |
| 29 [ 'skia_os == "win"', { | 31 [ 'skia_os == "win"', { |
| 30 'sources' : [ | 32 'sources' : [ |
| 31 '../src/views/win/SkOSWindow_Win.cpp', | 33 '../src/views/win/SkOSWindow_Win.cpp', |
| 32 '../src/views/win/skia_win.cpp', | 34 '../src/views/win/skia_win.cpp', |
| 33 ], | 35 ], |
| 34 }], | 36 }], |
| (...skipping 16 matching lines...) Expand all Loading... |
| 51 'INFOPLIST_FILE' : '../example/mac/HelloWorld-Info.plist', | 53 'INFOPLIST_FILE' : '../example/mac/HelloWorld-Info.plist', |
| 52 }, | 54 }, |
| 53 'mac_bundle_resources' : [ | 55 'mac_bundle_resources' : [ |
| 54 '../example/mac/HelloWorld.xib' | 56 '../example/mac/HelloWorld.xib' |
| 55 ], | 57 ], |
| 56 }], | 58 }], |
| 57 ], | 59 ], |
| 58 }, | 60 }, |
| 59 ], | 61 ], |
| 60 } | 62 } |
| OLD | NEW |