diff options
author | Elliott Hughes <enh@google.com> | 2013-02-20 18:13:24 -0800 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2013-02-21 07:41:59 -0800 |
commit | 4b9702c6912c6f8745a77f5b5af56e7fe196e7c2 (patch) | |
tree | 02fee3631b7f3b60eb15f791b5dd004b27d6a571 /build/Android.common.mk | |
parent | 64f574f474aa77c72778640ab21f8cfa72546812 (diff) | |
download | art-4b9702c6912c6f8745a77f5b5af56e7fe196e7c2.zip art-4b9702c6912c6f8745a77f5b5af56e7fe196e7c2.tar.gz art-4b9702c6912c6f8745a77f5b5af56e7fe196e7c2.tar.bz2 |
Add a JDWP::Request type to replace the old uint8_t* and int.
This also lets us check that all the data in a (successful) request
is actually read, though doing so caught two bugs in the tests, and
may well catch bugs in the actual debuggers.
Change-Id: Ibed402e6f1c0c7a1d19d61f0be9bddd0c2f5a388
Diffstat (limited to 'build/Android.common.mk')
-rw-r--r-- | build/Android.common.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/build/Android.common.mk b/build/Android.common.mk index 5262ce0..f35458c 100644 --- a/build/Android.common.mk +++ b/build/Android.common.mk @@ -188,6 +188,7 @@ LIBART_COMMON_SRC_FILES := \ src/jdwp/jdwp_expand_buf.cc \ src/jdwp/jdwp_handler.cc \ src/jdwp/jdwp_main.cc \ + src/jdwp/jdwp_request.cc \ src/jdwp/jdwp_socket.cc \ src/jdwp/object_registry.cc \ src/jni_internal.cc \ |