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

Side by Side Diff: gyp/experimental.gyp

Issue 1233093004: experimental: remove old PDF benchmarking tools (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 5 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 | « experimental/tools/skp_to_pdf_md5.cpp ('k') | no next file » | 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 experimental directory. 5 # GYP file to build experimental directory.
6 { 6 {
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'experimental', 9 'target_name': 'experimental',
10 'type': 'static_library', 10 'type': 'static_library',
11 'include_dirs': [ 11 'include_dirs': [
12 '../include/config', 12 '../include/config',
13 '../include/core', 13 '../include/core',
14 ], 14 ],
15 'sources': [ 15 'sources': [
16 '../experimental/SkSetPoly3To3.cpp', 16 '../experimental/SkSetPoly3To3.cpp',
17 '../experimental/SkSetPoly3To3_A.cpp', 17 '../experimental/SkSetPoly3To3_A.cpp',
18 '../experimental/SkSetPoly3To3_D.cpp', 18 '../experimental/SkSetPoly3To3_D.cpp',
19 ], 19 ],
20 'direct_dependent_settings': { 20 'direct_dependent_settings': {
21 'include_dirs': [ 21 'include_dirs': [
22 '../experimental', 22 '../experimental',
23 ], 23 ],
24 }, 24 },
25 }, 25 },
26 {
27 'target_name': 'multipage_pdf_profiler',
28 'type': 'executable',
29 'sources': [
30 '../experimental/tools/multipage_pdf_profiler.cpp',
31 '../experimental/tools/PageCachingDocument.cpp',
32 ],
33 'dependencies': [
34 'skia_lib.gyp:skia_lib',
35 'pdf.gyp:pdf',
36 'tools.gyp:proc_stats',
37 'tools.gyp:sk_tool_utils',
38 ],
39 },
40 {
41 'target_name': 'skp_to_pdf_md5',
42 'type': 'executable',
43 'sources': [
44 '../experimental/tools/skp_to_pdf_md5.cpp',
45 '../experimental/tools/SkDmuxWStream.cpp',
46 ],
47 'include_dirs': [
48 '../src/core',
49 '../tools/flags',
50 ],
51 'dependencies': [
52 'pdf.gyp:pdf',
53 'skia_lib.gyp:skia_lib',
54 'tools.gyp:sk_tool_utils',
55 ],
56 },
57 ], 26 ],
58 } 27 }
OLDNEW
« no previous file with comments | « experimental/tools/skp_to_pdf_md5.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698