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

Side by Side Diff: remoting/remoting_test_driver_common.gyp

Issue 1164143002: Added new driver for chromoting. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changed comments to be clearer and alphabetized targets. 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
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
Sergey Ulanov 2015/06/08 18:57:37 I don't think you need a separate .gyp file for th
tonychun 2015/06/08 20:35:58 Yes I agree. I will take care of this in the next
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'includes': [ 6 'includes': [
7 'remoting_version.gypi', 7 'remoting_version.gypi',
8 ], 8 ],
9 9
10 'target_defaults': { 10 'target_defaults': {
11 'type': 'none', 11 'type': 'none',
12 }, # target_defaults 12 }, # target_defaults
13
joedow 2015/06/08 18:35:20 Any reason this newline was removed?
14 'targets': [ 13 'targets': [
15 { 14 {
16 'target_name': 'ar_test_driver_common', 15 'target_name': 'remoting_test_driver_common',
17 'type': 'static_library', 16 'type': 'static_library',
18 'dependencies': [ 17 'dependencies': [
19 '../base/base.gyp:base', 18 '../base/base.gyp:base',
20 '../base/base.gyp:test_support_base', 19 '../base/base.gyp:test_support_base',
21 '../google_apis/google_apis.gyp:google_apis', 20 '../google_apis/google_apis.gyp:google_apis',
22 '../net/net.gyp:net', 21 '../net/net.gyp:net',
23 '../remoting/remoting.gyp:remoting_base', 22 '../remoting/remoting.gyp:remoting_base',
24 '../remoting/remoting.gyp:remoting_client', 23 '../remoting/remoting.gyp:remoting_client',
25 '../remoting/remoting.gyp:remoting_protocol', 24 '../remoting/remoting.gyp:remoting_protocol',
26 '../remoting/proto/chromotocol.gyp:chromotocol_proto_lib',
27 '../testing/gtest.gyp:gtest', 25 '../testing/gtest.gyp:gtest',
28 ], 26 ],
29 'defines': [ 27 'defines': [
30 'VERSION=<(version_full)', 28 'VERSION=<(version_full)',
31 ], 29 ],
32 'sources': [ 30 'sources': [
33 'test/access_token_fetcher.cc', 31 'test/access_token_fetcher.cc',
34 'test/access_token_fetcher.h', 32 'test/access_token_fetcher.h',
35 'test/app_remoting_connected_client_fixture.cc',
36 'test/app_remoting_connected_client_fixture.h',
37 'test/app_remoting_test_driver_environment.cc',
38 'test/app_remoting_test_driver_environment.h',
39 'test/refresh_token_store.cc', 33 'test/refresh_token_store.cc',
40 'test/refresh_token_store.h', 34 'test/refresh_token_store.h',
41 'test/remote_application_details.h',
42 'test/remote_connection_observer.h', 35 'test/remote_connection_observer.h',
43 'test/remote_host_info.cc',
44 'test/remote_host_info.h',
45 'test/remote_host_info_fetcher.cc',
46 'test/remote_host_info_fetcher.h',
47 'test/test_chromoting_client.cc', 36 'test/test_chromoting_client.cc',
48 'test/test_chromoting_client.h', 37 'test/test_chromoting_client.h',
49 'test/test_video_renderer.cc', 38 'test/test_video_renderer.cc',
50 'test/test_video_renderer.h', 39 'test/test_video_renderer.h',
51 ], 40 ],
52 }, # end of target 'ar_test_driver_common' 41 }, # end of target 'remoting_test_driver_common'
53 {
54 # An external version of the test driver tool which includes minimal tests
55 'target_name': 'ar_sample_test_driver',
56 'type': '<(gtest_target_type)',
57 'dependencies': [
58 'ar_test_driver_common',
59 ],
60 'defines': [
61 'VERSION=<(version_full)',
62 ],
63 'sources': [
64 'test/app_remoting_test_driver.cc',
65 'test/app_remoting_test_driver_environment_app_details.cc',
66 ],
67 'include_dirs': [
68 '../testing/gtest/include',
69 ],
70 }, # end of target 'ar_sample_test_driver'
71 ], # end of targets 42 ], # end of targets
72 } 43 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698