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

Side by Side Diff: gyp/gm.gyp

Issue 346453002: Refactor how we handle resources path in Tests. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix rebase conflict 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
« no previous file with comments | « gyp/bench.gyp ('k') | gyp/resources.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 # GYP file to build the "gm" (golden master) executable. 1 # GYP file to build the "gm" (golden master) executable.
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': 'gm_expectations', 8 'target_name': 'gm_expectations',
9 'type': 'static_library', 9 'type': 'static_library',
10 'include_dirs' : [ 10 'include_dirs' : [
(...skipping 13 matching lines...) Expand all
24 'include_dirs': [ 24 'include_dirs': [
25 '../gm/', 25 '../gm/',
26 ], 26 ],
27 }, 27 },
28 }, 28 },
29 { 29 {
30 'target_name': 'gm', 30 'target_name': 'gm',
31 'type': 'executable', 31 'type': 'executable',
32 'include_dirs' : [ 32 'include_dirs' : [
33 '../src/core', 33 '../src/core',
34 '../src/effects',
34 '../src/images', 35 '../src/images',
35 '../src/effects', 36 '../src/pipe/utils',
36 '../src/pipe/utils/', 37 '../src/utils',
37 '../src/utils/',
38 '../tools',
39 ], 38 ],
40 'includes': [ 39 'includes': [
41 'gmslides.gypi', 40 'gmslides.gypi',
42 ], 41 ],
43 'sources': [ 42 'sources': [
44 '../gm/gmmain.cpp', 43 '../gm/gmmain.cpp',
45 '../gm/system_preferences_default.cpp', 44 '../gm/system_preferences_default.cpp',
46 45
47 '../src/pipe/utils/SamplePipeControllers.h', 46 '../src/pipe/utils/SamplePipeControllers.h',
48 '../src/pipe/utils/SamplePipeControllers.cpp', 47 '../src/pipe/utils/SamplePipeControllers.cpp',
49 ], 48 ],
50 'dependencies': [ 49 'dependencies': [
51 'skia_lib.gyp:skia_lib', 50 'etc1.gyp:libetc1',
52 'flags.gyp:flags', 51 'flags.gyp:flags',
53 'gm.gyp:gm_expectations', 52 'gm.gyp:gm_expectations',
54 'jsoncpp.gyp:jsoncpp', 53 'jsoncpp.gyp:jsoncpp',
55 'pdf.gyp:pdf', 54 'pdf.gyp:pdf',
56 'etc1.gyp:libetc1', 55 'resources.gyp:resources',
56 'skia_lib.gyp:skia_lib',
57 ], 57 ],
58 'conditions': [ 58 'conditions': [
59 ['skia_android_framework', { 59 ['skia_android_framework', {
60 'libraries': [ 60 'libraries': [
61 '-lskia', 61 '-lskia',
62 ], 62 ],
63 }], 63 }],
64 ['skia_run_pdfviewer_in_gm or skia_poppler_enabled', { 64 ['skia_run_pdfviewer_in_gm or skia_poppler_enabled', {
65 'sources': [ 65 'sources': [
66 '../src/utils/SkPDFRasterizer.cpp', 66 '../src/utils/SkPDFRasterizer.cpp',
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 '../src/gpu', 109 '../src/gpu',
110 ], 110 ],
111 'dependencies': [ 111 'dependencies': [
112 'gputest.gyp:skgputest', 112 'gputest.gyp:skgputest',
113 ], 113 ],
114 }], 114 }],
115 ], 115 ],
116 }, 116 },
117 ], 117 ],
118 } 118 }
OLDNEW
« no previous file with comments | « gyp/bench.gyp ('k') | gyp/resources.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698