copied everything over from 2012 and removed all of the actual robot code except the drivetrain stuff
git-svn-id: https://robotics.mvla.net/svn/frc971/2013/trunk/src@4078 f308d9b7-e957-4cde-b6ac-9a88185e7312
diff --git a/aos/build/aos_all.gyp b/aos/build/aos_all.gyp
new file mode 100644
index 0000000..a65909d
--- /dev/null
+++ b/aos/build/aos_all.gyp
@@ -0,0 +1,48 @@
+# This file has the executables etc that AOS builds.
+# User .gyp files for the atom should depend on :Atom.
+# User .gyp files for the crio should depend on :Crio.
+{
+ 'targets': [
+ {
+ 'target_name': 'Atom',
+ 'type': 'none',
+ 'variables': {
+ 'no_rsync': 1,
+ },
+ 'dependencies': [
+ '../atom_code/camera/camera.gyp:CameraHTTPStreamer',
+ '../atom_code/camera/camera.gyp:CameraReader',
+ '../atom_code/core/core.gyp:*',
+ #'../atom_code/async_action:*', # TODO(brians) fix this broken test
+ '../atom_code/ipc_lib/ipc_lib.gyp:*',
+ '../atom_code/starter/starter.gyp:*',
+ '../crio/crio.gyp:unsafe_queue_test',
+ '../common/common.gyp:queue_test',
+ #'../common/messages/messages.gyp:*', # TODO(brians) did this test ever exist?
+ '../atom_code/logging/logging.gyp:*',
+ '../common/common.gyp:die_test',
+ ':Common',
+ ],
+ },
+ {
+ 'target_name': 'Crio',
+ 'type': 'none',
+ 'dependencies': [
+ '../crio/googletest/googletest.gyp:*',
+ ':Common',
+ ],
+ },
+ {
+ 'target_name': 'Common',
+ 'type': 'none',
+ 'variables': {
+ 'no_rsync': 1,
+ },
+ 'dependencies': [
+ '<(AOS)/common/common.gyp:type_traits_test',
+ '<(AOS)/common/common.gyp:time_test',
+ '<(AOS)/common/common.gyp:mutex_test',
+ ],
+ },
+ ],
+}