Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(89)

Side by Side Diff: nacltoons/proj.nacl/Makefile

Issue 17743003: [nacltoons] Roll cocos2dx + two bug fixes (Closed) Base URL: https://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « nacltoons/proj.linux/Makefile ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # 5 #
6 # GNU Make based build file. For details on GNU Make see: 6 # GNU Make based build file. For details on GNU Make see:
7 # http://www.gnu.org/software/make/manual/make.html 7 # http://www.gnu.org/software/make/manual/make.html
8 # 8 #
9 # 9 #
10 10
(...skipping 27 matching lines...) Expand all
38 ../src/app_delegate.cc \ 38 ../src/app_delegate.cc \
39 ../src/game_manager.cc \ 39 ../src/game_manager.cc \
40 ../src/level_layer.cc \ 40 ../src/level_layer.cc \
41 ../bindings/LuaBox2D.cpp \ 41 ../bindings/LuaBox2D.cpp \
42 ../bindings/lua_level_layer.cpp \ 42 ../bindings/lua_level_layer.cpp \
43 ../bindings/LuaCocos2dExtensions.cpp \ 43 ../bindings/LuaCocos2dExtensions.cpp \
44 $(COCOS_ROOT)/samples/Cpp/TestCpp/Classes/Box2DTestBed/GLES-Render.cpp \ 44 $(COCOS_ROOT)/samples/Cpp/TestCpp/Classes/Box2DTestBed/GLES-Render.cpp \
45 $(COCOS_ROOT)/extensions/physics_nodes/CCPhysicsDebugNode.cpp \ 45 $(COCOS_ROOT)/extensions/physics_nodes/CCPhysicsDebugNode.cpp \
46 $(COCOS_ROOT)/extensions/physics_nodes/CCPhysicsSprite.cpp \ 46 $(COCOS_ROOT)/extensions/physics_nodes/CCPhysicsSprite.cpp \
47 $(COCOS_ROOT)/extensions/physics_nodes/CCPhysicsNode.cpp \ 47 $(COCOS_ROOT)/extensions/physics_nodes/CCPhysicsNode.cpp \
48 $(COCOS_ROOT)/extensions/GUI/CCEditBox/CCEditBox.cpp \
49 $(COCOS_ROOT)/extensions/GUI/CCEditBox/CCEditBoxImplNone.cpp \
50 $(COCOS_ROOT)/extensions/GUI/CCControlExtension/CCControlStepper.cpp \
51 $(COCOS_ROOT)/extensions/GUI/CCControlExtension/CCControlButton.cpp \
52 $(COCOS_ROOT)/extensions/GUI/CCControlExtension/CCControlPotentiometer.cpp \
53 $(COCOS_ROOT)/extensions/GUI/CCControlExtension/CCControlSwitch.cpp \
54 $(COCOS_ROOT)/extensions/GUI/CCControlExtension/CCControlUtils.cpp \
55 $(COCOS_ROOT)/extensions/GUI/CCControlExtension/CCControlColourPicker.cpp \
56 $(COCOS_ROOT)/extensions/GUI/CCControlExtension/CCControlSaturationBrightnes sPicker.cpp \
57 $(COCOS_ROOT)/extensions/GUI/CCControlExtension/CCControlHuePicker.cpp \
58 $(COCOS_ROOT)/extensions/GUI/CCControlExtension/CCControlSlider.cpp \
59 $(COCOS_ROOT)/extensions/GUI/CCControlExtension/CCScale9Sprite.cpp \
60 $(COCOS_ROOT)/extensions/GUI/CCControlExtension/CCInvocation.cpp \
61 $(COCOS_ROOT)/extensions/GUI/CCControlExtension/CCControl.cpp \
48 $(COCOS_ROOT)/scripting/lua/cocos2dx_support/CCLuaEngine.cpp \ 62 $(COCOS_ROOT)/scripting/lua/cocos2dx_support/CCLuaEngine.cpp \
49 $(COCOS_ROOT)/scripting/lua/cocos2dx_support/CCLuaStack.cpp \ 63 $(COCOS_ROOT)/scripting/lua/cocos2dx_support/CCLuaStack.cpp \
50 $(COCOS_ROOT)/scripting/lua/cocos2dx_support/Cocos2dxLuaLoader.cpp \ 64 $(COCOS_ROOT)/scripting/lua/cocos2dx_support/Cocos2dxLuaLoader.cpp \
51 $(COCOS_ROOT)/scripting/lua/cocos2dx_support/LuaCocos2d.cpp \ 65 $(COCOS_ROOT)/scripting/lua/cocos2dx_support/LuaCocos2d.cpp \
52 $(COCOS_ROOT)/scripting/lua/cocos2dx_support/tolua_fix.c \ 66 $(COCOS_ROOT)/scripting/lua/cocos2dx_support/tolua_fix.c \
53 67
54 PAGE := index.html 68 PAGE := index.html
55 69
56 # 70 #
57 # Get pepper directory for toolchain and includes. 71 # Get pepper directory for toolchain and includes.
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 $(OUTBASE)/lib/$(TOOLCHAIN)_arm/$(CONFIG)/libcocos2d.a \ 183 $(OUTBASE)/lib/$(TOOLCHAIN)_arm/$(CONFIG)/libcocos2d.a \
170 $(OUTBASE)/lib/$(TOOLCHAIN)_arm/$(CONFIG)/liblua.a \ 184 $(OUTBASE)/lib/$(TOOLCHAIN)_arm/$(CONFIG)/liblua.a \
171 $(OUTBASE)/lib/$(TOOLCHAIN)_arm/$(CONFIG)/libbox2d.a \ 185 $(OUTBASE)/lib/$(TOOLCHAIN)_arm/$(CONFIG)/libbox2d.a \
172 $(OUTBASE)/lib/$(TOOLCHAIN)_arm/$(CONFIG)/liblua-yaml.a 186 $(OUTBASE)/lib/$(TOOLCHAIN)_arm/$(CONFIG)/liblua-yaml.a
173 187
174 $(OUTDIR)/$(TARGET)_x86_32.nexe: \ 188 $(OUTDIR)/$(TARGET)_x86_32.nexe: \
175 $(OUTBASE)/lib/$(TOOLCHAIN)_x86_32/$(CONFIG)/libcocos2d.a \ 189 $(OUTBASE)/lib/$(TOOLCHAIN)_x86_32/$(CONFIG)/libcocos2d.a \
176 $(OUTBASE)/lib/$(TOOLCHAIN)_x86_32/$(CONFIG)/liblua.a \ 190 $(OUTBASE)/lib/$(TOOLCHAIN)_x86_32/$(CONFIG)/liblua.a \
177 $(OUTBASE)/lib/$(TOOLCHAIN)_x86_32/$(CONFIG)/libbox2d.a \ 191 $(OUTBASE)/lib/$(TOOLCHAIN)_x86_32/$(CONFIG)/libbox2d.a \
178 $(OUTBASE)/lib/$(TOOLCHAIN)_x86_32/$(CONFIG)/liblua-yaml.a 192 $(OUTBASE)/lib/$(TOOLCHAIN)_x86_32/$(CONFIG)/liblua-yaml.a
OLDNEW
« no previous file with comments | « nacltoons/proj.linux/Makefile ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698