Commit d948d7f9 authored by rsesek@chromium.org's avatar rsesek@chromium.org

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
parent a764cc97
...@@ -125,6 +125,7 @@ ...@@ -125,6 +125,7 @@
}], }],
['OS=="mac"', { ['OS=="mac"', {
'dependencies': [ 'dependencies': [
'../sandbox/sandbox.gyp:*',
'../third_party/ocmock/ocmock.gyp:*', '../third_party/ocmock/ocmock.gyp:*',
], ],
}], }],
......
# 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': [
'../',
],
},
],
}
// 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) {
}
...@@ -17,6 +17,11 @@ ...@@ -17,6 +17,11 @@
'linux/sandbox_linux.gypi', 'linux/sandbox_linux.gypi',
], ],
}], }],
[ 'OS=="mac" and OS!="ios"', {
'includes': [
'mac/sandbox_mac.gypi',
],
}],
[ 'OS!="win" and OS!="mac" and OS!="linux" and OS!="android"', { [ 'OS!="win" and OS!="mac" and OS!="linux" and OS!="android"', {
# A 'default' to accomodate the "sandbox" target. # A 'default' to accomodate the "sandbox" target.
'targets': [ 'targets': [
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment