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

Side by Side Diff: gyp/gm.gyp

Issue 15927011: fix gm on android (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: remove more Created 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | 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 # 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 '../include/core/', 11 '../include/core/',
12 '../src/utils/', 12 '../src/utils/',
13 ], 13 ],
14 'sources': [ 14 'sources': [
15 '../gm/gm_expectations.h', 15 '../gm/gm_expectations.h',
16 '../gm/gm_expectations.cpp', 16 '../gm/gm_expectations.cpp',
17 ], 17 ],
18 'dependencies': [ 18 'dependencies': [
19 'skia_lib.gyp:skia_lib', 19 'skia_lib.gyp:skia_lib',
20 'core.gyp:core',
21 'images.gyp:images',
22 'jsoncpp.gyp:jsoncpp', 20 'jsoncpp.gyp:jsoncpp',
23 'utils.gyp:utils',
24 ], 21 ],
25 'direct_dependent_settings': { 22 'direct_dependent_settings': {
26 'include_dirs': [ 23 'include_dirs': [
27 '../gm/', 24 '../gm/',
28 ], 25 ],
29 }, 26 },
30 }, 27 },
31 { 28 {
32 'target_name': 'gm', 29 'target_name': 'gm',
33 'type': 'executable', 30 'type': 'executable',
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 ], 88 ],
92 }, 89 },
93 ], 90 ],
94 } 91 }
95 92
96 # Local Variables: 93 # Local Variables:
97 # tab-width:2 94 # tab-width:2
98 # indent-tabs-mode:nil 95 # indent-tabs-mode:nil
99 # End: 96 # End:
100 # vim: set expandtab tabstop=2 shiftwidth=2: 97 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698