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' : [ |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 }], | 87 }], |
88 ['skia_os == "win"', { | 88 ['skia_os == "win"', { |
89 'dependencies': [ | 89 'dependencies': [ |
90 'xps.gyp:xps', | 90 'xps.gyp:xps', |
91 ], | 91 ], |
92 }], | 92 }], |
93 ['skia_gpu == 1', { | 93 ['skia_gpu == 1', { |
94 'include_dirs': [ | 94 'include_dirs': [ |
95 '../src/gpu', | 95 '../src/gpu', |
96 ], | 96 ], |
| 97 'dependencies': [ |
| 98 'gputest.gyp:skgputest', |
| 99 ], |
97 }], | 100 }], |
98 ], | 101 ], |
99 }, | 102 }, |
100 ], | 103 ], |
101 } | 104 } |
102 | 105 |
103 # Local Variables: | 106 # Local Variables: |
104 # tab-width:2 | 107 # tab-width:2 |
105 # indent-tabs-mode:nil | 108 # indent-tabs-mode:nil |
106 # End: | 109 # End: |
107 # vim: set expandtab tabstop=2 shiftwidth=2: | 110 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |