| 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 ], |
| 11 'sources': [ | 11 'sources': [ |
| 12 '../experimental/SkSetPoly3To3.cpp', | 12 '../experimental/SkSetPoly3To3.cpp', |
| 13 '../experimental/SkSetPoly3To3_A.cpp', | 13 '../experimental/SkSetPoly3To3_A.cpp', |
| 14 '../experimental/SkSetPoly3To3_D.cpp', | 14 '../experimental/SkSetPoly3To3_D.cpp', |
| 15 ], | 15 ], |
| 16 'direct_dependent_settings': { | 16 'direct_dependent_settings': { |
| 17 'include_dirs': [ | 17 'include_dirs': [ |
| 18 '../experimental', | 18 '../experimental', |
| 19 ], | 19 ], |
| 20 }, | 20 }, |
| 21 }, | 21 }, |
| 22 { | 22 { |
| 23 'target_name': 'SkiaExamples', | 23 'target_name': 'SkiaExamples', |
| 24 'type': 'executable', | 24 'type': 'executable', |
| 25 'mac_bundle' : 1, | 25 'mac_bundle' : 1, |
| 26 'sources': [ | 26 'sources': [ |
| 27 '../experimental/SkiaExamples/SkExample.h', | 27 '../experimental/SkiaExamples/SkExample.h', |
| 28 '../experimental/SkiaExamples/SkExample.cpp', | 28 '../experimental/SkiaExamples/SkExample.cpp', |
| 29 '../experimental/SkiaExamples/HelloSkiaExample.cpp', | |
| 30 ], | 29 ], |
| 31 'dependencies': [ | 30 'dependencies': [ |
| 32 'flags.gyp:flags', | 31 'flags.gyp:flags', |
| 33 'skia_lib.gyp:skia_lib', | 32 'skia_lib.gyp:skia_lib', |
| 34 'views.gyp:views', | 33 'views.gyp:views', |
| 35 ], | 34 ], |
| 36 'conditions' : [ | 35 'conditions' : [ |
| 37 [ 'skia_gpu == 1', { | 36 [ 'skia_gpu == 1', { |
| 38 'include_dirs' : [ | 37 'include_dirs' : [ |
| 39 '../src/gpu', | 38 '../include/gpu', |
| 40 ], | 39 ], |
| 41 }], | 40 }], |
| 42 [ 'skia_os == "win"', { | 41 [ 'skia_os == "win"', { |
| 43 'sources' : [ | 42 'sources' : [ |
| 44 '../src/views/win/SkOSWindow_Win.cpp', | 43 '../src/views/win/SkOSWindow_Win.cpp', |
| 45 '../src/views/win/skia_win.cpp', | 44 '../src/views/win/skia_win.cpp', |
| 46 ], | 45 ], |
| 47 }], | 46 }], |
| 48 [ 'skia_os == "mac"', { | 47 [ 'skia_os == "mac"', { |
| 49 'sources': [ | 48 'sources': [ |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 '../tools/flags', | 99 '../tools/flags', |
| 101 ], | 100 ], |
| 102 'dependencies': [ | 101 'dependencies': [ |
| 103 'pdf.gyp:pdf', | 102 'pdf.gyp:pdf', |
| 104 'skia_lib.gyp:skia_lib', | 103 'skia_lib.gyp:skia_lib', |
| 105 'tools.gyp:sk_tool_utils', | 104 'tools.gyp:sk_tool_utils', |
| 106 ], | 105 ], |
| 107 }, | 106 }, |
| 108 ], | 107 ], |
| 109 } | 108 } |
| OLD | NEW |