1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- cc_defaults {
- name: "memory_replay_defaults",
- host_supported: true,
- srcs: [
- "Action.cpp",
- "LineBuffer.cpp",
- "NativeInfo.cpp",
- "Pointers.cpp",
- "Thread.cpp",
- "Threads.cpp",
- ],
- cflags: [
- "-Wall",
- "-Wextra",
- "-Werror",
- ],
- shared_libs: ["libbase"],
- target: {
- darwin: {
- enabled: false,
- },
- },
- compile_multilib: "both",
- multilib: {
- lib32: {
- suffix: "32",
- },
- lib64: {
- suffix: "64",
- },
- },
- }
- cc_binary {
- name: "memory_replay",
- defaults: ["memory_replay_defaults"],
- srcs: ["main.cpp"],
- }
- cc_test {
- name: "memory_replay_tests",
- defaults: ["memory_replay_defaults"],
- srcs: [
- "tests/ActionTest.cpp",
- "tests/LineBufferTest.cpp",
- "tests/NativeInfoTest.cpp",
- "tests/PointersTest.cpp",
- "tests/ThreadTest.cpp",
- "tests/ThreadsTest.cpp",
- ],
- local_include_dirs: ["tests"],
- target: {
- android: {
- test_suites: ["device-tests"],
- },
- },
- }
|