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

Side by Side 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 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
14 'targets': [
15 {
16 'target_name': 'ar_test_driver_common',
17 'type': 'static_library',
18 'dependencies': [
19 '../base/base.gyp:base',
20 '../base/base.gyp:test_support_base',
21 '../google_apis/google_apis.gyp:google_apis',
22 '../net/net.gyp:net',
23 '../remoting/remoting.gyp:remoting_base',
24 '../remoting/remoting.gyp:remoting_client',
25 '../remoting/remoting.gyp:remoting_protocol',
26 '../remoting/proto/chromotocol.gyp:chromotocol_proto_lib',
27 '../testing/gtest.gyp:gtest',
28 ],
29 'defines': [
30 'VERSION=<(version_full)',
31 ],
32 }, # end of target 'ar_test_driver_common'
33 {
34 # An external version of the test driver tool which includes minimal tests
35 'target_name': 'ar_sample_test_driver',
36 'type': '<(gtest_target_type)',
37 'dependencies': [
38 'ar_test_driver_common',
39 ],
40 'defines': [
41 'VERSION=<(version_full)',
42 ],
43 'sources': [
44 'test/app_remoting_test_driver.cc',
45 ],
46 'include_dirs': [
47 '../testing/gtest/include',
48 ],
49 }, # end of target 'ar_sample_test_driver'
50 ], # end of targets
51 }
OLDNEW
« 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