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

Unified Diff: remoting/app_remoting_test.gyp

Issue 900973002: Initial changelist for the app remoting test driver tool (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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
« no previous file with comments | « no previous file | remoting/test/app_remoting_test_driver.cc » ('j') | remoting/test/app_remoting_test_driver.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/app_remoting_test.gyp
diff --git a/remoting/app_remoting_test.gyp b/remoting/app_remoting_test.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..87ef886ff76586a97027ed1f1a53955c04d46c1d
--- /dev/null
+++ b/remoting/app_remoting_test.gyp
@@ -0,0 +1,51 @@
+# 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': [
+ {
+ 'target_name': 'ar_test_driver_common',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../base/base.gyp:test_support_base',
+ '../google_apis/google_apis.gyp:google_apis',
+ '../net/net.gyp:net',
+ '../remoting/remoting.gyp:remoting_base',
+ '../remoting/remoting.gyp:remoting_client',
+ '../remoting/remoting.gyp:remoting_protocol',
+ '../remoting/proto/chromotocol.gyp:chromotocol_proto_lib',
+ '../testing/gtest.gyp:gtest',
+ ],
+ 'defines': [
+ 'VERSION=<(version_full)',
+ ],
+ }, # end of target 'ar_test_driver_common'
+ {
+ # An external version of the test driver tool which includes minimal tests
+ 'target_name': 'ar_sample_test_driver',
+ 'type': '<(gtest_target_type)',
+ 'dependencies': [
+ 'ar_test_driver_common',
+ ],
+ 'defines': [
+ 'VERSION=<(version_full)',
+ ],
+ 'sources': [
+ 'test/app_remoting_test_driver.cc',
+ ],
+ 'include_dirs': [
+ '../testing/gtest/include',
+ ],
+ }, # end of target 'ar_sample_test_driver'
+ ], # end of targets
+}
« no previous file with comments | « no previous file | remoting/test/app_remoting_test_driver.cc » ('j') | remoting/test/app_remoting_test_driver.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698