summaryrefslogtreecommitdiff
path: root/base/test/native_library_test_utils.cc
diff options
context:
space:
mode:
Diffstat (limited to 'base/test/native_library_test_utils.cc')
-rw-r--r--base/test/native_library_test_utils.cc19
1 files changed, 19 insertions, 0 deletions
diff --git a/base/test/native_library_test_utils.cc b/base/test/native_library_test_utils.cc
new file mode 100644
index 0000000000..adcb1b01e9
--- /dev/null
+++ b/base/test/native_library_test_utils.cc
@@ -0,0 +1,19 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "base/test/native_library_test_utils.h"
+
+namespace {
+
+int g_static_value = 0;
+
+} // namespace
+
+extern "C" {
+
+int g_native_library_exported_value = 0;
+
+int NativeLibraryTestIncrement() { return ++g_static_value; }
+
+} // extern "C"