| OLD | NEW |
| 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
| 3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 # We should be able to make this work on Mac. We need: | 5 # We should be able to make this work on Mac. We need: |
| 6 # -framework OpenGL -framework GLUT -lm -L /usr/X11/lib | 6 # -framework OpenGL -framework GLUT -lm -L /usr/X11/lib |
| 7 | 7 |
| 8 { | 8 { |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 '-lskia_effects', | 75 '-lskia_effects', |
| 76 '-lskia_gr', | 76 '-lskia_gr', |
| 77 '-lskia_images', | 77 '-lskia_images', |
| 78 '-lskia_opts', | 78 '-lskia_opts', |
| 79 '-lskia_opts_ssse3', | 79 '-lskia_opts_ssse3', |
| 80 '-lskia_ports', | 80 '-lskia_ports', |
| 81 '-lskia_sfnt', | 81 '-lskia_sfnt', |
| 82 '-lskia_skgr', | 82 '-lskia_skgr', |
| 83 '-lskia_utils', | 83 '-lskia_utils', |
| 84 '-Wl,--end-group', | 84 '-Wl,--end-group', |
| 85 '-lfontconfig', |
| 85 '-lfreetype', | 86 '-lfreetype', |
| 86 '-lGL', | 87 '-lGL', |
| 87 '-lglut', | 88 '-lglut', |
| 88 '-lGLU', | 89 '-lGLU', |
| 89 '-lpng', | 90 '-lpng', |
| 90 '-lm', | 91 '-lm', |
| 91 '-lc' ], | 92 '-lc' ], |
| 92 'ldflags': [ | 93 'ldflags': [ |
| 93 '-Wall', | 94 '-Wall', |
| 94 '-g', | 95 '-g', |
| (...skipping 10 matching lines...) Expand all Loading... |
| 105 '-framework GLUT', | 106 '-framework GLUT', |
| 106 '-L /usr/X11/lib' | 107 '-L /usr/X11/lib' |
| 107 ], | 108 ], |
| 108 } | 109 } |
| 109 ] | 110 ] |
| 110 ] | 111 ] |
| 111 } | 112 } |
| 112 ] | 113 ] |
| 113 } | 114 } |
| 114 | 115 |
| OLD | NEW |