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

Side by Side Diff: gyp/visualbench.gyp

Issue 1443033002: Remove dependency on src/android from dm and nanobench (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 1 month 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 # 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/android',
22 '../src/core', 21 '../src/core',
23 '../src/effects', 22 '../src/effects',
24 '../src/images', 23 '../src/images',
25 ], 24 ],
26 'sources': [ 25 'sources': [
27 '../gm/gm.cpp', 26 '../gm/gm.cpp',
28 '<!@(python find.py ../tools/VisualBench "*.cpp")', 27 '<!@(python find.py ../tools/VisualBench "*.cpp")',
29 '<!@(python find.py ../tools/VisualBench "*.h")', 28 '<!@(python find.py ../tools/VisualBench "*.h")',
30 '<!@(python find.py ../bench "*.cpp")', 29 '<!@(python find.py ../bench "*.cpp")',
31 ], 30 ],
(...skipping 28 matching lines...) Expand all
60 }], 59 }],
61 [ 'skia_os == "android" and skia_use_sdl == 1', { 60 [ 'skia_os == "android" and skia_use_sdl == 1', {
62 'dependencies': [ 61 'dependencies': [
63 'android_deps.gyp:Android_VisualBenchSDL', 62 'android_deps.gyp:Android_VisualBenchSDL',
64 ], 63 ],
65 }], 64 }],
66 ], 65 ],
67 }, 66 },
68 ], 67 ],
69 } 68 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698