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

Unified Diff: testing/android/native_test.gyp

Issue 12213035: Android: Refactor native test setup in a util class. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: testing/android/native_test.gyp
diff --git a/testing/android/native_test.gyp b/testing/android/native_test.gyp
index 06f72793f509bd5cc9b9f46b4b12cf260a7cc338..ebf0b42413ce2e931624b44ad83aab296b8071ee 100644
--- a/testing/android/native_test.gyp
+++ b/testing/android/native_test.gyp
@@ -69,6 +69,7 @@
'../../base/base.gyp:test_support_base',
'../gtest.gyp:gtest',
'native_test_jni_headers',
+ 'native_test_util',
],
},
{
@@ -89,6 +90,17 @@
],
},
},
+ {
+ 'target_name': 'native_test_util',
+ 'type': 'static_library',
+ 'sources': [
+ 'native_test_util.cc',
+ 'native_test_util.h',
+ ],
+ 'dependencies': [
+ '../../base/base.gyp:base',
+ ],
+ },
],
}]
],

Powered by Google App Engine
This is Rietveld 408576698