| OLD | NEW |
| 1 #!/bin/bash | 1 #!/bin/bash |
| 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 The Chromium 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 set -e | 6 set -e |
| 7 | 7 |
| 8 SCRIPT_DIR="$(cd $(dirname $0) && pwd)" | 8 SCRIPT_DIR="$(cd $(dirname $0) && pwd)" |
| 9 | 9 |
| 10 OUT_ROOT=${SCRIPT_DIR}/../out | 10 OUT_ROOT=${SCRIPT_DIR}/../out |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 CopyHeaderDir particle_nodes | 127 CopyHeaderDir particle_nodes |
| 128 CopyHeaderDir platform | 128 CopyHeaderDir platform |
| 129 CopyHeaderDir platform/nacl | 129 CopyHeaderDir platform/nacl |
| 130 CopyHeaderDir script_support | 130 CopyHeaderDir script_support |
| 131 CopyHeaderDir shaders | 131 CopyHeaderDir shaders |
| 132 CopyHeaderDir sprite_nodes | 132 CopyHeaderDir sprite_nodes |
| 133 CopyHeaderDir support | 133 CopyHeaderDir support |
| 134 CopyHeaderDir support/data_support | 134 CopyHeaderDir support/data_support |
| 135 CopyHeaderDir support/user_default | 135 CopyHeaderDir support/user_default |
| 136 CopyHeaderDir support/tinyxml2 | 136 CopyHeaderDir support/tinyxml2 |
| 137 CopyHeaderDir support/component |
| 137 CopyHeaderDir text_input_node | 138 CopyHeaderDir text_input_node |
| 138 CopyHeaderDir textures | 139 CopyHeaderDir textures |
| 139 CopyHeaderDir tilemap_parallax_nodes | 140 CopyHeaderDir tilemap_parallax_nodes |
| 140 CopyHeaderDir touch_dispatcher | 141 CopyHeaderDir touch_dispatcher |
| 141 cp -u ${COCOS2DX_ROOT}/CocosDenshion/include/*.h ${OUT_DIR} | 142 cp -u ${COCOS2DX_ROOT}/CocosDenshion/include/*.h ${OUT_DIR} |
| 142 cp -u ${COCOS2DX_ROOT}/scripting/lua/cocos2dx_support/*.h ${OUT_DIR} | 143 cp -u ${COCOS2DX_ROOT}/scripting/lua/cocos2dx_support/*.h ${OUT_DIR} |
| 143 cp -u ${COCOS2DX_ROOT}/scripting/lua/tolua/tolua++.h ${OUT_DIR} | 144 cp -u ${COCOS2DX_ROOT}/scripting/lua/tolua/tolua++.h ${OUT_DIR} |
| 144 } | 145 } |
| 145 | 146 |
| 146 echo '@@@BUILD_STEP build cocos2dx@@@' | 147 echo '@@@BUILD_STEP build cocos2dx@@@' |
| 147 BuildTarget cocos2dx/proj.nacl | 148 BuildTarget cocos2dx/proj.nacl |
| 148 | 149 |
| 149 echo '@@@BUILD_STEP build CocosDenshion@@@' | 150 echo '@@@BUILD_STEP build CocosDenshion@@@' |
| 150 BuildTarget CocosDenshion/proj.nacl | 151 BuildTarget CocosDenshion/proj.nacl |
| 151 | 152 |
| 152 echo '@@@BUILD_STEP build Box2D@@@' | 153 echo '@@@BUILD_STEP build Box2D@@@' |
| 153 BuildTarget external/Box2D/proj.nacl | 154 BuildTarget external/Box2D/proj.nacl |
| 154 | 155 |
| 155 echo '@@@BUILD_STEP build lua@@@' | 156 echo '@@@BUILD_STEP build lua@@@' |
| 156 BuildTarget scripting/lua/proj.nacl | 157 BuildTarget scripting/lua/proj.nacl |
| 157 | 158 |
| 158 echo 'Copying headers' | 159 echo 'Copying headers' |
| 159 CopyHeaders | 160 CopyHeaders |
| OLD | NEW |