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

Side by Side Diff: gyp/gm.gyp

Issue 343583005: Add basic stacktrace handler using libunwind. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: wimpy linux 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/dm.gyp ('k') | gyp/tests.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' : [
11 '../src/utils/', 11 '../src/utils/',
12 ], 12 ],
13 'sources': [ 13 'sources': [
14 '../gm/gm_expectations.h', 14 '../gm/gm_expectations.h',
15 '../gm/gm_expectations.cpp', 15 '../gm/gm_expectations.cpp',
16 '../tools/sk_tool_utils.cpp', 16 '../tools/sk_tool_utils.cpp',
17 ], 17 ],
18 'dependencies': [ 18 'dependencies': [
19 'crash_handler.gyp:CrashHandler',
20 'jsoncpp.gyp:jsoncpp',
19 'skia_lib.gyp:skia_lib', 21 'skia_lib.gyp:skia_lib',
20 'jsoncpp.gyp:jsoncpp',
21 ], 22 ],
22 'direct_dependent_settings': { 23 'direct_dependent_settings': {
23 'include_dirs': [ 24 'include_dirs': [
24 '../gm/', 25 '../gm/',
25 ], 26 ],
26 }, 27 },
27 }, 28 },
28 { 29 {
29 'target_name': 'gm', 30 'target_name': 'gm',
30 'type': 'executable', 31 'type': 'executable',
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 '../src/gpu', 109 '../src/gpu',
109 ], 110 ],
110 'dependencies': [ 111 'dependencies': [
111 'gputest.gyp:skgputest', 112 'gputest.gyp:skgputest',
112 ], 113 ],
113 }], 114 }],
114 ], 115 ],
115 }, 116 },
116 ], 117 ],
117 } 118 }
OLDNEW
« no previous file with comments | « gyp/dm.gyp ('k') | gyp/tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698