1// slesTest_playStates 2 3cc_test { 4 name: "slesTest_playStates", 5 gtest: false, 6 7 srcs: ["slesTest_playStates.cpp"], 8 9 shared_libs: ["libOpenSLES"], 10 11 cflags: [ 12 "-Werror", 13 "-Wall", 14 15 "-UNDEBUG", 16 ], 17} 18 19// slesTest_playStreamType 20 21cc_test { 22 name: "slesTest_playStreamType", 23 gtest: false, 24 25 srcs: ["slesTestPlayStreamType.cpp"], 26 27 shared_libs: ["libOpenSLES"], 28 29 cflags: [ 30 "-Werror", 31 "-Wall", 32 33 "-UNDEBUG", 34 ], 35} 36 37// slesTest_playUri 38 39cc_test { 40 name: "slesTest_playUri", 41 gtest: false, 42 43 srcs: ["slesTestPlayUri.cpp"], 44 45 shared_libs: ["libOpenSLES"], 46 47 cflags: [ 48 "-Werror", 49 "-Wall", 50 51 "-UNDEBUG", 52 ], 53} 54 55// slesTest_loopUri 56 57cc_test { 58 name: "slesTest_loopUri", 59 gtest: false, 60 61 srcs: ["slesTestLoopUri.cpp"], 62 63 shared_libs: ["libOpenSLES"], 64 65 cflags: [ 66 "-Werror", 67 "-Wall", 68 69 "-UNDEBUG", 70 ], 71} 72 73// slesTest_playUri2 74 75cc_test { 76 name: "slesTest_playUri2", 77 gtest: false, 78 79 srcs: ["slesTestPlayUri2.cpp"], 80 81 shared_libs: ["libOpenSLES"], 82 83 cflags: [ 84 "-Werror", 85 "-Wall", 86 87 "-UNDEBUG", 88 ], 89 90} 91 92// slesTest_slowDownUri 93 94cc_test { 95 name: "slesTest_slowDownUri", 96 gtest: false, 97 98 srcs: ["slesTestSlowDownUri.cpp"], 99 100 shared_libs: ["libOpenSLES"], 101 102 cflags: [ 103 "-Werror", 104 "-Wall", 105 106 "-UNDEBUG", 107 ], 108} 109 110// slesTest_manyPlayers 111 112cc_test { 113 name: "slesTest_manyPlayers", 114 gtest: false, 115 116 srcs: ["slesTestManyPlayers.cpp"], 117 118 shared_libs: ["libOpenSLES"], 119 120 cflags: [ 121 "-Werror", 122 "-Wall", 123 124 "-UNDEBUG", 125 ], 126} 127 128// slesTest_getPositionUri 129 130cc_test { 131 name: "slesTest_getPositionUri", 132 gtest: false, 133 134 srcs: ["slesTestGetPositionUri.cpp"], 135 136 shared_libs: ["libOpenSLES"], 137 138 cflags: [ 139 "-Werror", 140 "-Wall", 141 142 "-UNDEBUG", 143 ], 144} 145