OLD | NEW |
1 { | 1 { |
2 'targets': [ | 2 'targets': [ |
3 { | 3 { |
4 'target_name': 'FileReaderApp', | 4 'target_name': 'FileReaderApp', |
5 'type': 'executable', | 5 'type': 'executable', |
6 'mac_bundle' : 1, | 6 'mac_bundle' : 1, |
7 | 7 |
8 'include_dirs' : [ | 8 'include_dirs' : [ |
9 '../include/pipe', | 9 '../include/pipe', |
10 '../experimental/FileReaderApp', | 10 '../experimental/FileReaderApp', |
11 '../experimental/SimpleCocoaApp', | 11 '../experimental/SimpleCocoaApp', |
12 ], | 12 ], |
13 'sources': [ | 13 'sources': [ |
14 '../experimental/FileReaderApp/ReaderView.cpp', | 14 '../experimental/FileReaderApp/ReaderView.cpp', |
15 '../src/pipe/SkGPipeRead.cpp', | 15 '../src/pipe/SkGPipeRead.cpp', |
16 ], | 16 ], |
17 'sources!': [ | 17 'sources!': [ |
18 '../src/utils/mac/SkOSWindow_Mac.cpp', | 18 '../src/utils/mac/SkOSWindow_Mac.cpp', |
19 ], | 19 ], |
20 'dependencies': [ | 20 'dependencies': [ |
21 'skia_base_libs.gyp:skia_base_libs', | 21 'skia_lib.gyp:skia_lib', |
22 'effects.gyp:effects', | |
23 'views.gyp:views', | 22 'views.gyp:views', |
24 'xml.gyp:xml', | 23 'xml.gyp:xml', |
25 ], | 24 ], |
26 'conditions' : [ | 25 'conditions' : [ |
27 # Only supports Mac currently | 26 # Only supports Mac currently |
28 ['skia_os == "mac"', { | 27 ['skia_os == "mac"', { |
29 'sources': [ | 28 'sources': [ |
30 '../experimental/SimpleCocoaApp/SkNSWindow.mm', | 29 '../experimental/SimpleCocoaApp/SkNSWindow.mm', |
31 '../experimental/SimpleCocoaApp/SkNSView.mm', | 30 '../experimental/SimpleCocoaApp/SkNSView.mm', |
32 '../experimental/FileReaderApp/FileReaderApp-Info.plist', | 31 '../experimental/FileReaderApp/FileReaderApp-Info.plist', |
(...skipping 30 matching lines...) Expand all Loading... |
63 ], | 62 ], |
64 }, | 63 }, |
65 ], | 64 ], |
66 } | 65 } |
67 | 66 |
68 # Local Variables: | 67 # Local Variables: |
69 # tab-width:2 | 68 # tab-width:2 |
70 # indent-tabs-mode:nil | 69 # indent-tabs-mode:nil |
71 # End: | 70 # End: |
72 # vim: set expandtab tabstop=2 shiftwidth=2: | 71 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |