Chromium Code Reviews| 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 106 ], | 106 ], |
| 107 }], | 107 }], |
| 108 ['skia_gpu == 1', { | 108 ['skia_gpu == 1', { |
| 109 'include_dirs': [ | 109 'include_dirs': [ |
| 110 '../src/gpu', | 110 '../src/gpu', |
| 111 ], | 111 ], |
| 112 'dependencies': [ | 112 'dependencies': [ |
| 113 'gputest.gyp:skgputest', | 113 'gputest.gyp:skgputest', |
| 114 ], | 114 ], |
| 115 }], | 115 }], |
| 116 ['skia_android_framework', { | |
|
djsollen
2014/01/21 17:47:37
if we aren't building gm yet, do we need this?
scroggo
2014/01/21 19:10:06
Removed.
| |
| 117 'dependencies!': [ | |
| 118 'poppler.gyp:libpoppler-cpp-gpl', | |
| 119 ], | |
| 120 }], | |
| 116 ], | 121 ], |
| 117 }, | 122 }, |
| 118 ], | 123 ], |
| 119 } | 124 } |
| OLD | NEW |