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

Side by Side Diff: gyp/kilobench.gyp

Issue 1815823002: Move SkGLContext and some GrGLInterface implementations to skgputest module (Closed) Base URL: https://chromium.googlesource.com/skia.git@debugobject
Patch Set: fix windows and android? Created 4 years, 8 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
« no previous file with comments | « gyp/gputest.gyp ('k') | gyp/pathops_unittest.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 Google Inc. 1 # Copyright 2016 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 performance testbench. 5 # GYP file to build performance testbench.
6 # 6 #
7 { 7 {
8 'includes': [ 8 'includes': [
9 'apptype_console.gypi', 9 'apptype_console.gypi',
10 ], 10 ],
11 'targets': [ 11 'targets': [
12 { 12 {
13 'target_name': 'kilobench', 13 'target_name': 'kilobench',
14 'type': 'executable', 14 'type': 'executable',
15 'include_dirs': [ 15 'include_dirs': [
16 '../bench', 16 '../bench',
17 '../gm', 17 '../gm',
18 '../include/private', 18 '../include/private',
19 '../src/core', 19 '../src/core',
20 '../src/gpu',
20 '../tools/VisualBench', 21 '../tools/VisualBench',
21 ], 22 ],
22 'sources': [ 23 'sources': [
23 '<!@(python find.py ../tools/kilobench "*.cpp")', 24 '<!@(python find.py ../tools/kilobench "*.cpp")',
24 '../bench/Benchmark.cpp', 25 '../bench/Benchmark.cpp',
25 '../tools/VisualBench/VisualSKPBench.cpp', 26 '../tools/VisualBench/VisualSKPBench.cpp',
26 ], 27 ],
27 'dependencies': [ 28 'dependencies': [
28 'flags.gyp:flags', 29 'flags.gyp:flags',
30 'gpu.gyp:skgpu',
29 'gputest.gyp:skgputest', 31 'gputest.gyp:skgputest',
30 'jsoncpp.gyp:jsoncpp', 32 'jsoncpp.gyp:jsoncpp',
31 'skia_lib.gyp:skia_lib', 33 'skia_lib.gyp:skia_lib',
32 'tools.gyp:crash_handler', 34 'tools.gyp:crash_handler',
33 'tools.gyp:proc_stats', 35 'tools.gyp:proc_stats',
34 'tools.gyp:resources', 36 'tools.gyp:resources',
35 'tools.gyp:timer', 37 'tools.gyp:timer',
36 ], 38 ],
37 }, 39 },
38 ], 40 ],
39 } 41 }
OLDNEW
« no previous file with comments | « gyp/gputest.gyp ('k') | gyp/pathops_unittest.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698