summaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authortfarina <tfarina@chromium.org>2015-05-10 23:58:29 -0700
committerCommit bot <commit-bot@chromium.org>2015-05-11 06:58:55 +0000
commit16f0a88eea42d7528eaa71533e1c539c0bd45962 (patch)
tree35f763cf9965536a78d7c7ec3da7ffb94c1167bc /testing
parent450cd07835c8e724cf0cc9f2f3dacfe63832b02b (diff)
downloadchromium_src-16f0a88eea42d7528eaa71533e1c539c0bd45962.zip
chromium_src-16f0a88eea42d7528eaa71533e1c539c0bd45962.tar.gz
chromium_src-16f0a88eea42d7528eaa71533e1c539c0bd45962.tar.bz2
Move GN build file for gmock_mutant from build/secondary into the main tree.
There is no need to keep it in the secondary tree. BUG=None TEST=gn gen out-gn/Debug R=dpranke@chromium.org Review URL: https://codereview.chromium.org/1123183004 Cr-Commit-Position: refs/heads/master@{#329102}
Diffstat (limited to 'testing')
-rw-r--r--testing/BUILD.gn13
1 files changed, 13 insertions, 0 deletions
diff --git a/testing/BUILD.gn b/testing/BUILD.gn
new file mode 100644
index 0000000..fc5063749
--- /dev/null
+++ b/testing/BUILD.gn
@@ -0,0 +1,13 @@
+# 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.
+
+source_set("gmock_mutant") {
+ sources = [
+ "gmock_mutant.h", # gMock helpers
+ ]
+
+ deps = [
+ "//base",
+ ]
+}