| 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 18 matching lines...) Expand all Loading... |
| 29 '../experimental/SkiaExamples/HelloSkiaExample.cpp', | 29 '../experimental/SkiaExamples/HelloSkiaExample.cpp', |
| 30 ], | 30 ], |
| 31 'dependencies': [ | 31 'dependencies': [ |
| 32 'flags.gyp:flags', | 32 'flags.gyp:flags', |
| 33 'skia_lib.gyp:skia_lib', | 33 'skia_lib.gyp:skia_lib', |
| 34 'views.gyp:views', | 34 'views.gyp:views', |
| 35 ], | 35 ], |
| 36 'conditions' : [ | 36 'conditions' : [ |
| 37 [ 'skia_gpu == 1', { | 37 [ 'skia_gpu == 1', { |
| 38 'include_dirs' : [ | 38 'include_dirs' : [ |
| 39 '../src/gpu', | 39 '../include/gpu', |
| 40 ], | 40 ], |
| 41 }], | 41 }], |
| 42 [ 'skia_os == "win"', { | 42 [ 'skia_os == "win"', { |
| 43 'sources' : [ | 43 'sources' : [ |
| 44 '../src/views/win/SkOSWindow_Win.cpp', | 44 '../src/views/win/SkOSWindow_Win.cpp', |
| 45 '../src/views/win/skia_win.cpp', | 45 '../src/views/win/skia_win.cpp', |
| 46 ], | 46 ], |
| 47 }], | 47 }], |
| 48 [ 'skia_os == "mac"', { | 48 [ 'skia_os == "mac"', { |
| 49 'sources': [ | 49 'sources': [ |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 ], | 108 ], |
| 109 } | 109 } |
| OLD | NEW |