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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'includes': [
7 'remoting_version.gypi',
8 ],
9
10 'target_defaults': {
11 'type': 'none',
12 }, # target_defaults
13 'targets': [
14 {
15 # 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?
16 'target_name': 'chromoting_test_driver',
17 'type': '<(gtest_target_type)',
18 'dependencies': [
19 '<(DEPTH)/remoting/remoting_test_driver_common.gyp:remoting_test_driver_ common',
20 ],
21 'defines': [
22 'VERSION=<(version_full)',
23 ],
24 'sources': [
25 'test/chromoting_test_driver.cc',
26 ],
27 'include_dirs': [
28 '../testing/gtest/include',
29 ],
30 }, # end of target 'chromoting_test_driver'
31 ], # end of targets
32 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698