Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(505)

Side by Side Diff: gyp/bench.gypi

Issue 1390213002: Add subsetting to SkScanlineDecoder (Closed) Base URL: https://skia.googlesource.com/skia.git@fill-refactor
Patch Set: Rebase to manage dependencies Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/codec',
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 '../tools', 15 '../tools',
15 ], 16 ],
16 'sources': [ '<!@(python find.py ../bench "*.cpp")' ], 17 'sources': [ '<!@(python find.py ../bench "*.cpp")' ],
17 18
18 'dependencies': [ 19 'dependencies': [
19 'etc1.gyp:libetc1', 20 'etc1.gyp:libetc1',
20 'skia_lib.gyp:skia_lib', 21 'skia_lib.gyp:skia_lib',
21 'tools.gyp:bitmap_region_decoder', 22 'tools.gyp:bitmap_region_decoder',
22 'tools.gyp:resources', 23 'tools.gyp:resources',
23 'tools.gyp:sk_tool_utils', 24 'tools.gyp:sk_tool_utils',
24 ], 25 ],
25 'conditions': [ 26 'conditions': [
26 ['skia_gpu == 1', { 27 ['skia_gpu == 1', {
27 'include_dirs': [ '../src/gpu' ], 28 'include_dirs': [ '../src/gpu' ],
28 'dependencies': [ 'gputest.gyp:skgputest' ], 29 'dependencies': [ 'gputest.gyp:skgputest' ],
29 }], 30 }],
30 ['not skia_android_framework', { 31 ['not skia_android_framework', {
31 'sources!': [ '../bench/nanobenchAndroid.cpp' ], 32 'sources!': [ '../bench/nanobenchAndroid.cpp' ],
32 }], 33 }],
33 ], 34 ],
34 } 35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698