Chromium Code Reviews| 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 { | 5 { |
| 6 'include_dirs': [ | 6 'include_dirs': [ |
| 7 '../bench/subset', | 7 '../bench/subset', |
| 8 '../bench', | 8 '../bench', |
| 9 '../include/private', | 9 '../include/private', |
| 10 '../src/android', | |
|
mtklein
2015/11/11 22:24:21
Probably not needed now that this API is in includ
msarett
2015/11/11 22:33:14
In all three cases it is needed.
get_scale_from_s
| |
| 10 '../src/core', | 11 '../src/core', |
| 11 '../src/effects', | 12 '../src/effects', |
| 12 '../src/gpu', | 13 '../src/gpu', |
| 13 '../src/utils', | 14 '../src/utils', |
| 14 ], | 15 ], |
| 15 'sources': [ '<!@(python find.py ../bench "*.cpp")' ], | 16 'sources': [ '<!@(python find.py ../bench "*.cpp")' ], |
| 16 | 17 |
| 17 'dependencies': [ | 18 'dependencies': [ |
| 18 'etc1.gyp:libetc1', | 19 'etc1.gyp:libetc1', |
| 19 'skia_lib.gyp:skia_lib', | 20 'skia_lib.gyp:skia_lib', |
| 20 'tools.gyp:bitmap_region_decoder', | |
| 21 'tools.gyp:resources', | 21 'tools.gyp:resources', |
| 22 'tools.gyp:sk_tool_utils', | 22 'tools.gyp:sk_tool_utils', |
| 23 ], | 23 ], |
| 24 'conditions': [ | 24 'conditions': [ |
| 25 ['skia_gpu == 1', { | 25 ['skia_gpu == 1', { |
| 26 'include_dirs': [ '../src/gpu' ], | 26 'include_dirs': [ '../src/gpu' ], |
| 27 'dependencies': [ 'gputest.gyp:skgputest' ], | 27 'dependencies': [ 'gputest.gyp:skgputest' ], |
| 28 }], | 28 }], |
| 29 ['not skia_android_framework', { | 29 ['not skia_android_framework', { |
| 30 'sources!': [ '../bench/nanobenchAndroid.cpp' ], | 30 'sources!': [ '../bench/nanobenchAndroid.cpp' ], |
| 31 }], | 31 }], |
| 32 ], | 32 ], |
| 33 } | 33 } |
| OLD | NEW |