OLD | NEW |
1 # Build ALMOST everything provided by Skia; this should be the default target. | 1 # Build ALMOST everything provided by Skia; this should be the default target. |
2 # | 2 # |
3 # This omits the following targets that many developers won't want to build: | 3 # This omits the following targets that many developers won't want to build: |
4 # - debugger: this requires QT to build | 4 # - debugger: this requires QT to build |
5 # | 5 # |
6 { | 6 { |
7 'variables': { | 7 'variables': { |
8 'skia_skip_gui%': 0, | 8 'skia_skip_gui%': 0, |
9 }, | 9 }, |
10 'targets': [ | 10 'targets': [ |
(...skipping 12 matching lines...) Expand all Loading... |
23 'pathops_unittest.gyp:*', | 23 'pathops_unittest.gyp:*', |
24 # 'pdfviewer.gyp:pdfviewer', | 24 # 'pdfviewer.gyp:pdfviewer', |
25 'dm.gyp:dm', | 25 'dm.gyp:dm', |
26 ], | 26 ], |
27 'conditions': [ | 27 'conditions': [ |
28 ['skia_os == "android"', { | 28 ['skia_os == "android"', { |
29 'dependencies': [ 'android_system.gyp:SampleApp_APK' ], | 29 'dependencies': [ 'android_system.gyp:SampleApp_APK' ], |
30 }], | 30 }], |
31 ['skia_os == "ios"', { | 31 ['skia_os == "ios"', { |
32 'dependencies!': [ 'SampleApp.gyp:SampleApp' ], | 32 'dependencies!': [ 'SampleApp.gyp:SampleApp' ], |
| 33 'dependencies': ['iOSShell.gyp:iOSShell' ], |
33 }], | 34 }], |
34 ['skia_os == "mac" or skia_os == "linux"', { | 35 ['skia_os == "mac" or skia_os == "linux"', { |
35 'dependencies': [ 'nanomsg.gyp:*' ], | 36 'dependencies': [ 'nanomsg.gyp:*' ], |
36 }], | 37 }], |
37 [ 'skia_skip_gui', | 38 [ 'skia_skip_gui', |
38 { | 39 { |
39 'dependencies!': [ | 40 'dependencies!': [ |
40 'SampleApp.gyp:SampleApp', | 41 'SampleApp.gyp:SampleApp', |
41 ] | 42 ] |
42 } | 43 } |
43 ] | 44 ] |
44 ], | 45 ], |
45 }, | 46 }, |
46 ], | 47 ], |
47 } | 48 } |
OLD | NEW |