| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 { | 73 { |
| 74 'link_settings': { | 74 'link_settings': { |
| 75 'libraries': [ | 75 'libraries': [ |
| 76 '-Wl,--start-group', | 76 '-Wl,--start-group', |
| 77 '-lskia_core', | 77 '-lskia_core', |
| 78 '-lskia_effects', | 78 '-lskia_effects', |
| 79 '-lskia_gr', | 79 '-lskia_gr', |
| 80 '-lskia_images', | 80 '-lskia_images', |
| 81 '-lskia_opts', | 81 '-lskia_opts', |
| 82 '-lskia_opts_ssse3', | 82 '-lskia_opts_ssse3', |
| 83 '-lskia_pdf', |
| 83 '-lskia_ports', | 84 '-lskia_ports', |
| 84 '-lskia_sfnt', | 85 '-lskia_sfnt', |
| 85 '-lskia_skgr', | 86 '-lskia_skgr', |
| 86 '-lskia_utils', | 87 '-lskia_utils', |
| 88 '-lskia_views', |
| 89 '-lskia_xml', |
| 87 '-Wl,--end-group', | 90 '-Wl,--end-group', |
| 88 '-lfontconfig', | 91 '-lfontconfig', |
| 89 '-lfreetype', | 92 '-lfreetype', |
| 90 '-lGL', | 93 '-lGL', |
| 91 '-lglut', | 94 '-lglut', |
| 92 '-lGLU', | 95 '-lGLU', |
| 93 '-lpng', | 96 '-lpng', |
| 94 '-lm', | 97 '-lm', |
| 95 '-lc' ], | 98 '-lc' ], |
| 96 'ldflags': [ | 99 'ldflags': [ |
| (...skipping 11 matching lines...) Expand all Loading... |
| 108 '-framework GLUT', | 111 '-framework GLUT', |
| 109 '-L /usr/X11/lib' | 112 '-L /usr/X11/lib' |
| 110 ], | 113 ], |
| 111 } | 114 } |
| 112 ] | 115 ] |
| 113 ] | 116 ] |
| 114 } | 117 } |
| 115 ] | 118 ] |
| 116 } | 119 } |
| 117 | 120 |
| OLD | NEW |