| OLD | NEW |
| 1 # GYP file to build a V8 sample. | 1 # GYP file to build a V8 sample. |
| 2 { | 2 { |
| 3 'targets': [ | 3 'targets': [ |
| 4 { | 4 { |
| 5 'target_name': 'SkV8Example', | 5 'target_name': 'SkV8Example', |
| 6 'type': 'executable', | 6 'type': 'executable', |
| 7 'mac_bundle' : 1, | 7 'mac_bundle' : 1, |
| 8 'include_dirs' : [ | 8 'include_dirs' : [ |
| 9 '../tools/flags', | 9 '../tools/flags', |
| 10 '../../../v8/include', | 10 '../../../v8/include', |
| 11 ], | 11 ], |
| 12 'includes': [], | 12 'includes': [], |
| 13 'sources': [ | 13 'sources': [ |
| 14 '../experimental/SkV8Example/SkV8Example.h', | 14 '../experimental/SkV8Example/SkV8Example.h', |
| 15 '../experimental/SkV8Example/SkV8Example.cpp', | 15 '../experimental/SkV8Example/SkV8Example.cpp', |
| 16 '../experimental/SkV8Example/Global.h', |
| 17 '../experimental/SkV8Example/Global.cpp', |
| 16 ], | 18 ], |
| 17 'dependencies': [ | 19 'dependencies': [ |
| 18 'skia_lib.gyp:skia_lib', | 20 'skia_lib.gyp:skia_lib', |
| 19 'views.gyp:views', | 21 'views.gyp:views', |
| 20 'xml.gyp:xml', | 22 'xml.gyp:xml', |
| 21 'flags.gyp:flags', | 23 'flags.gyp:flags', |
| 22 ], | 24 ], |
| 23 | 25 |
| 24 'link_settings': { | 26 'link_settings': { |
| 25 'libraries': [ | 27 'libraries': [ |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 }, | 84 }, |
| 83 'mac_bundle_resources' : [ | 85 'mac_bundle_resources' : [ |
| 84 '../experimental/SkiaExamples/SkiaExamples.xib' | 86 '../experimental/SkiaExamples/SkiaExamples.xib' |
| 85 ], | 87 ], |
| 86 } | 88 } |
| 87 ], | 89 ], |
| 88 ], | 90 ], |
| 89 } | 91 } |
| 90 ], | 92 ], |
| 91 } | 93 } |
| OLD | NEW |