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

Side by Side Diff: gyp/tests.gyp

Issue 344213003: Move BenchTimer to tools as Timer (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fixes Created 6 years, 6 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 # GYP file to build unit tests. 1 # GYP file to build unit tests.
2 { 2 {
3 'includes': [ 3 'includes': [
4 'apptype_console.gypi', 4 'apptype_console.gypi',
5 ], 5 ],
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'tests', 8 'target_name': 'tests',
9 'type': 'executable', 9 'type': 'executable',
10 'includes': [ 10 'includes': [
11 'pathops_unittest.gypi', 11 'pathops_unittest.gypi',
12 'tests.gypi', 12 'tests.gypi',
13 ], 13 ],
14 'dependencies': [ 'crash_handler.gyp:CrashHandler' ], 14 'dependencies': [ 'tools.gyp:crash_handler' ],
15 'sources': [ 15 'sources': [
16 '../tests/skia_test.cpp', 16 '../tests/skia_test.cpp',
17 ], 17 ],
18 'conditions': [ 18 'conditions': [
19 [ 'skia_android_framework == 1', { 19 [ 'skia_android_framework == 1', {
20 'libraries': [ 20 'libraries': [
21 '-lskia', 21 '-lskia',
22 ], 22 ],
23 'libraries!': [ 23 'libraries!': [
24 '-lz', 24 '-lz',
25 '-llog', 25 '-llog',
26 ], 26 ],
27 }], 27 }],
28 [ 'skia_gpu == 1', { 28 [ 'skia_gpu == 1', {
29 'include_dirs': [ 29 'include_dirs': [
30 '../src/gpu', 30 '../src/gpu',
31 ], 31 ],
32 }], 32 }],
33 ], 33 ],
34 }, 34 },
35 ], 35 ],
36 } 36 }
OLDNEW
« no previous file with comments | « gyp/skia_launcher.gyp ('k') | gyp/tests.gypi » ('j') | tools/timer/GpuTimer.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698