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

Unified Diff: remoting/chromoting_test.gyp

Issue 1164143002: Added new driver for chromoting. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed unused headers. Clarified comments. Reorganized .gyp file content. Created 5 years, 6 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: remoting/chromoting_test.gyp
diff --git a/remoting/chromoting_test.gyp b/remoting/chromoting_test.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..371a91c9d02b09093cd21b04fc0171c44bc50b67
--- /dev/null
+++ b/remoting/chromoting_test.gyp
@@ -0,0 +1,32 @@
+# Copyright 2015 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.
+
+{
+ 'includes': [
+ 'remoting_version.gypi',
+ ],
+
+ 'target_defaults': {
+ 'type': 'none',
+ }, # target_defaults
+ 'targets': [
+ {
+ # An external version of the test driver tool which includes minimal tests
joedow 2015/06/08 17:20:04 Was this copied from the app remoting test driver?
+ 'target_name': 'chromoting_test_driver',
+ 'type': '<(gtest_target_type)',
+ 'dependencies': [
+ '<(DEPTH)/remoting/remoting_test_driver_common.gyp:remoting_test_driver_common',
+ ],
+ 'defines': [
+ 'VERSION=<(version_full)',
+ ],
+ 'sources': [
+ 'test/chromoting_test_driver.cc',
+ ],
+ 'include_dirs': [
+ '../testing/gtest/include',
+ ],
+ }, # end of target 'chromoting_test_driver'
+ ], # end of targets
+}

Powered by Google App Engine
This is Rietveld 408576698