| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 '../src/views/mac/' | 66 '../src/views/mac/' |
| 67 ], | 67 ], |
| 68 'xcode_settings' : { | 68 'xcode_settings' : { |
| 69 'INFOPLIST_FILE' : '../experimental/SkiaExamples/SkiaExamples-Info.p
list', | 69 'INFOPLIST_FILE' : '../experimental/SkiaExamples/SkiaExamples-Info.p
list', |
| 70 }, | 70 }, |
| 71 'mac_bundle_resources' : [ | 71 'mac_bundle_resources' : [ |
| 72 '../experimental/SkiaExamples/SkiaExamples.xib' | 72 '../experimental/SkiaExamples/SkiaExamples.xib' |
| 73 ], | 73 ], |
| 74 }], | 74 }], |
| 75 ], | 75 ], |
| 76 } | 76 }, |
| 77 { |
| 78 'target_name': 'multipage_pdf_profiler', |
| 79 'type': 'executable', |
| 80 'sources': [ |
| 81 '../experimental/tools/multipage_pdf_profiler.cpp', |
| 82 ], |
| 83 'dependencies': [ |
| 84 'skia_lib.gyp:skia_lib', |
| 85 'pdf.gyp:pdf', |
| 86 'tools.gyp:proc_stats', |
| 87 'tools.gyp:sk_tool_utils', |
| 88 ], |
| 89 }, |
| 90 { |
| 91 'target_name': 'gmtoskp', |
| 92 'type': 'executable', |
| 93 'sources': [ |
| 94 '../experimental/tools/gmtoskp.cpp', |
| 95 '../gm/gm.cpp', |
| 96 ], |
| 97 'include_dirs': [ |
| 98 '../tools', |
| 99 '../src/effects', |
| 100 '../src/core', |
| 101 '../src/gpu', |
| 102 '../third_party/etc1', |
| 103 ], |
| 104 'dependencies': [ |
| 105 'skia_lib.gyp:skia_lib', |
| 106 'tools.gyp:resources', |
| 107 'tools.gyp:sk_tool_utils', |
| 108 'gputest.gyp:skgputest', |
| 109 ], |
| 110 'includes': [ 'gmslides.gypi', ], |
| 111 }, |
| 77 ], | 112 ], |
| 78 } | 113 } |
| OLD | NEW |