OLD | NEW |
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/', |
| 12 '../src/core/', |
| 13 '../src/opts/', |
11 '../src/utils/', | 14 '../src/utils/', |
12 ], | 15 ], |
13 'sources': [ | 16 'sources': [ |
14 '../gm/gm_expectations.h', | 17 '../gm/gm_expectations.h', |
15 '../gm/gm_expectations.cpp', | 18 '../gm/gm_expectations.cpp', |
16 ], | 19 ], |
17 'dependencies': [ | 20 'dependencies': [ |
18 'skia_lib.gyp:skia_lib', | 21 'skia_lib.gyp:skia_lib', |
19 'jsoncpp.gyp:jsoncpp', | 22 'jsoncpp.gyp:jsoncpp', |
20 ], | 23 ], |
21 'direct_dependent_settings': { | 24 'direct_dependent_settings': { |
22 'include_dirs': [ | 25 'include_dirs': [ |
23 '../gm/', | 26 '../gm/', |
24 ], | 27 ], |
25 }, | 28 }, |
26 }, | 29 }, |
27 { | 30 { |
28 'target_name': 'gm', | 31 'target_name': 'gm', |
29 'type': 'executable', | 32 'type': 'executable', |
30 'include_dirs' : [ | 33 'include_dirs' : [ |
31 '../src/core', | 34 '../src/core', |
32 '../src/effects', | 35 '../src/effects', |
| 36 '../src/opts', |
33 '../src/pipe/utils/', | 37 '../src/pipe/utils/', |
34 '../src/utils/', | 38 '../src/utils/', |
35 '../src/utils/debugger', | 39 '../src/utils/debugger', |
36 ], | 40 ], |
37 'includes': [ | 41 'includes': [ |
38 'gmslides.gypi', | 42 'gmslides.gypi', |
39 ], | 43 ], |
40 'sources': [ | 44 'sources': [ |
41 '../gm/gm.cpp', | 45 '../gm/gm.cpp', |
42 '../gm/gmmain.cpp', | 46 '../gm/gmmain.cpp', |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 ], | 105 ], |
102 }, | 106 }, |
103 ], | 107 ], |
104 } | 108 } |
105 | 109 |
106 # Local Variables: | 110 # Local Variables: |
107 # tab-width:2 | 111 # tab-width:2 |
108 # indent-tabs-mode:nil | 112 # indent-tabs-mode:nil |
109 # End: | 113 # End: |
110 # vim: set expandtab tabstop=2 shiftwidth=2: | 114 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |