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

Side by Side Diff: gyp/visualbench.gyp

Issue 1304083007: Create module system for VisualBench (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: feedback inc Created 5 years, 3 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 | « no previous file | tools/VisualBench/VisualBench.h » ('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 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 'includes': [ 7 'includes': [
8 'apptype_console.gypi', 8 'apptype_console.gypi',
9 ], 9 ],
10 'targets': [ 10 'targets': [
11 { 11 {
12 'target_name': 'visualbench', 12 'target_name': 'visualbench',
13 'type': 'executable', 13 'type': 'executable',
14 'includes' : [ 14 'includes' : [
15 'gmslides.gypi', 15 'gmslides.gypi',
16 ], 16 ],
17 'include_dirs' : [ 17 'include_dirs' : [
18 '../bench', 18 '../bench',
19 '../include/gpu', 19 '../include/gpu',
20 '../include/private', 20 '../include/private',
21 '../src/core', 21 '../src/core',
22 '../src/effects', 22 '../src/effects',
23 '../src/images', 23 '../src/images',
24 ], 24 ],
25 'sources': [ 25 'sources': [
26 '../gm/gm.cpp', 26 '../gm/gm.cpp',
27 '../tools/VisualBench/VisualBench.h', 27 '<!@(python find.py ../tools/VisualBench "*.cpp")',
28 '../tools/VisualBench/VisualBench.cpp', 28 '<!@(python find.py ../tools/VisualBench "*.h")',
29 '../tools/VisualBench/VisualBenchmarkStream.h',
30 '../tools/VisualBench/VisualBenchmarkStream.cpp',
31 '../tools/VisualBench/VisualSKPBench.h',
32 '../tools/VisualBench/VisualSKPBench.cpp',
33 '<!@(python find.py ../bench "*.cpp")', 29 '<!@(python find.py ../bench "*.cpp")',
34 ], 30 ],
35 'sources!': [ 31 'sources!': [
36 '../bench/nanobench.cpp', 32 '../bench/nanobench.cpp',
37 '../bench/nanobenchAndroid.cpp', 33 '../bench/nanobenchAndroid.cpp',
38 ], 34 ],
39 'dependencies': [ 35 'dependencies': [
40 'etc1.gyp:libetc1', 36 'etc1.gyp:libetc1',
41 'flags.gyp:flags', 37 'flags.gyp:flags',
42 'jsoncpp.gyp:jsoncpp', 38 'jsoncpp.gyp:jsoncpp',
(...skipping 15 matching lines...) Expand all
58 '-landroid', 54 '-landroid',
59 '-lGLESv2', 55 '-lGLESv2',
60 '-lEGL', 56 '-lEGL',
61 ], 57 ],
62 }, 58 },
63 }], 59 }],
64 ], 60 ],
65 }, 61 },
66 ], 62 ],
67 } 63 }
OLDNEW
« no previous file with comments | « no previous file | tools/VisualBench/VisualBench.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698