Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 #!/bin/bash | 1 #!/bin/bash |
| 2 # Copyright (c) 2011 The Native Client Authors. All rights reserved. | 2 # Copyright (c) 2011 The Native Client Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 # | 5 # |
| 6 | 6 |
| 7 # nacl-cairo-1.8.8.sh | 7 # nacl-cairo-1.8.8.sh |
|
binji
2014/01/13 23:05:42
remove
Sam Clegg
2014/01/14 01:54:38
Done.
| |
| 8 # | 8 # |
| 9 # usage: nacl-cairo-1.8.8.sh | 9 # usage: nacl-cairo-1.8.8.sh |
| 10 # | 10 # |
| 11 # this script downloads, patches, and builds cairo for Native Client. | 11 # this script downloads, patches, and builds cairo for Native Client. |
| 12 # | 12 # |
| 13 | 13 |
| 14 source pkg_info | |
| 15 source ../../build_tools/common.sh | |
| 16 | 14 |
| 17 # This is only necessary for pnacl | 15 # This is only necessary for pnacl |
| 18 export ax_cv_c_float_words_bigendian=no | 16 export ax_cv_c_float_words_bigendian=no |
| 19 | |
| 20 DefaultPackageInstall | |
| 21 exit 0 | |
| OLD | NEW |