summaryrefslogtreecommitdiffstats
path: root/sandbox/mac
diff options
context:
space:
mode:
authorrsesek@chromium.org <rsesek@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-29 02:30:12 +0000
committerrsesek@chromium.org <rsesek@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-29 02:30:12 +0000
commitd948d7f93b1e8329c7448ccbe6df16933e150a83 (patch)
treea0cd7e0724d5f833c21c9a89a74522cb3d864007 /sandbox/mac
parenta764cc973a3b88478f654a076163d43c99aa14a2 (diff)
downloadchromium_src-d948d7f93b1e8329c7448ccbe6df16933e150a83.zip
chromium_src-d948d7f93b1e8329c7448ccbe6df16933e150a83.tar.gz
chromium_src-d948d7f93b1e8329c7448ccbe6df16933e150a83.tar.bz2
Create a dummy sandbox_mac_unittests target.
This will allow the test suite to be added to buildbot before any real code lands, so it can be properly tested. BUG=367863 Review URL: https://codereview.chromium.org/252073002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@266740 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sandbox/mac')
-rw-r--r--sandbox/mac/sandbox_mac.gypi23
-rw-r--r--sandbox/mac/temp_test.cc8
2 files changed, 31 insertions, 0 deletions
diff --git a/sandbox/mac/sandbox_mac.gypi b/sandbox/mac/sandbox_mac.gypi
new file mode 100644
index 0000000..24f10b1
--- /dev/null
+++ b/sandbox/mac/sandbox_mac.gypi
@@ -0,0 +1,23 @@
+# Copyright 2014 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.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'sandbox_mac_unittests',
+ 'type': 'executable',
+ 'sources': [
+ 'temp_test.cc',
+ ],
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../base/base.gyp:run_all_unittests',
+ '../testing/gtest.gyp:gtest',
+ ],
+ 'include_dirs': [
+ '../',
+ ],
+ },
+ ],
+}
diff --git a/sandbox/mac/temp_test.cc b/sandbox/mac/temp_test.cc
new file mode 100644
index 0000000..f7b0d21
--- /dev/null
+++ b/sandbox/mac/temp_test.cc
@@ -0,0 +1,8 @@
+// Copyright 2014 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 "testing/gtest/include/gtest/gtest.h"
+
+TEST(TemporaryTest, ToGiveTheExecutableAnObjectFile) {
+}