Chromium Code Reviews| 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 |
| +} |