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

Side by Side Diff: remoting/app_remoting_test.gyp

Issue 1008043003: Adding Test Fixture for initial test cases for the App Remoting Test Driver. Also includes the pub… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing 2nd round of feedback Created 5 years, 9 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
« no previous file with comments | « remoting/BUILD.gn ('k') | remoting/remoting_all.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 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 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': {
(...skipping 13 matching lines...) Expand all
24 '../remoting/remoting.gyp:remoting_client', 24 '../remoting/remoting.gyp:remoting_client',
25 '../remoting/remoting.gyp:remoting_protocol', 25 '../remoting/remoting.gyp:remoting_protocol',
26 '../remoting/proto/chromotocol.gyp:chromotocol_proto_lib', 26 '../remoting/proto/chromotocol.gyp:chromotocol_proto_lib',
27 '../testing/gtest.gyp:gtest', 27 '../testing/gtest.gyp:gtest',
28 ], 28 ],
29 'defines': [ 29 'defines': [
30 'VERSION=<(version_full)', 30 'VERSION=<(version_full)',
31 ], 31 ],
32 'sources': [ 32 'sources': [
33 'test/access_token_fetcher.cc', 33 'test/access_token_fetcher.cc',
34 'test/access_token_fetcher.h',
35 'test/app_remoting_connected_client_fixture.cc',
36 'test/app_remoting_connected_client_fixture.h',
34 'test/app_remoting_test_driver_environment.cc', 37 'test/app_remoting_test_driver_environment.cc',
38 'test/app_remoting_test_driver_environment.h',
35 'test/refresh_token_store.cc', 39 'test/refresh_token_store.cc',
40 'test/refresh_token_store.h',
41 'test/remote_application_details.h',
42 'test/remote_connection_observer.h',
36 'test/remote_host_info.cc', 43 'test/remote_host_info.cc',
44 'test/remote_host_info.h',
37 'test/remote_host_info_fetcher.cc', 45 'test/remote_host_info_fetcher.cc',
46 'test/remote_host_info_fetcher.h',
47 'test/test_chromoting_client.cc',
48 'test/test_chromoting_client.h',
49 'test/test_video_renderer.cc',
50 'test/test_video_renderer.h',
38 ], 51 ],
39 }, # end of target 'ar_test_driver_common' 52 }, # end of target 'ar_test_driver_common'
40 { 53 {
41 # An external version of the test driver tool which includes minimal tests 54 # An external version of the test driver tool which includes minimal tests
42 'target_name': 'ar_sample_test_driver', 55 'target_name': 'ar_sample_test_driver',
43 'type': '<(gtest_target_type)', 56 'type': '<(gtest_target_type)',
44 'dependencies': [ 57 'dependencies': [
45 'ar_test_driver_common', 58 'ar_test_driver_common',
46 ], 59 ],
47 'defines': [ 60 'defines': [
48 'VERSION=<(version_full)', 61 'VERSION=<(version_full)',
49 ], 62 ],
50 'sources': [ 63 'sources': [
51 'test/app_remoting_test_driver.cc', 64 'test/app_remoting_test_driver.cc',
65 'test/app_remoting_test_driver_environment_app_details.cc',
52 ], 66 ],
53 'include_dirs': [ 67 'include_dirs': [
54 '../testing/gtest/include', 68 '../testing/gtest/include',
55 ], 69 ],
56 }, # end of target 'ar_sample_test_driver' 70 }, # end of target 'ar_sample_test_driver'
57 ], # end of targets 71 ], # end of targets
58 } 72 }
OLDNEW
« no previous file with comments | « remoting/BUILD.gn ('k') | remoting/remoting_all.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698