| OLD | NEW |
| 1 # GYP file to build experimental directory. | 1 # GYP file to build experimental directory. |
| 2 { | 2 { |
| 3 'targets': [ | 3 'targets': [ |
| 4 { | 4 { |
| 5 'target_name': 'experimental', | 5 'target_name': 'experimental', |
| 6 'type': 'static_library', | 6 'type': 'static_library', |
| 7 'include_dirs': [ | 7 'include_dirs': [ |
| 8 '../include/config', | 8 '../include/config', |
| 9 '../include/core', | 9 '../include/core', |
| 10 ], | 10 ], |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 'include_dirs': [ | 98 'include_dirs': [ |
| 99 '../src/core', | 99 '../src/core', |
| 100 '../tools/flags', | 100 '../tools/flags', |
| 101 ], | 101 ], |
| 102 'dependencies': [ | 102 'dependencies': [ |
| 103 'pdf.gyp:pdf', | 103 'pdf.gyp:pdf', |
| 104 'skia_lib.gyp:skia_lib', | 104 'skia_lib.gyp:skia_lib', |
| 105 'tools.gyp:sk_tool_utils', | 105 'tools.gyp:sk_tool_utils', |
| 106 ], | 106 ], |
| 107 }, | 107 }, |
| 108 { | |
| 109 'target_name': 'gmtoskp', | |
| 110 'type': 'executable', | |
| 111 'sources': [ | |
| 112 '../experimental/tools/gmtoskp.cpp', | |
| 113 '../gm/gm.cpp', | |
| 114 ], | |
| 115 'include_dirs': [ | |
| 116 '../tools', | |
| 117 '../src/effects', | |
| 118 '../src/core', | |
| 119 '../src/gpu', | |
| 120 '../third_party/etc1', | |
| 121 ], | |
| 122 'dependencies': [ | |
| 123 'skia_lib.gyp:skia_lib', | |
| 124 'tools.gyp:resources', | |
| 125 'tools.gyp:sk_tool_utils', | |
| 126 'gputest.gyp:skgputest', | |
| 127 ], | |
| 128 'includes': [ 'gmslides.gypi', ], | |
| 129 }, | |
| 130 ], | 108 ], |
| 131 } | 109 } |
| OLD | NEW |