| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 # GN version: //remoting:test_support | 8 # GN version: //remoting:test_support |
| 9 'target_name': 'remoting_test_common', | 9 'target_name': 'remoting_test_common', |
| 10 'type': 'static_library', | 10 'type': 'static_library', |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 # A chromoting version of remoting_test_driver_common | 123 # A chromoting version of remoting_test_driver_common |
| 124 'target_name': 'chromoting_test_driver', | 124 'target_name': 'chromoting_test_driver', |
| 125 'type': '<(gtest_target_type)', | 125 'type': '<(gtest_target_type)', |
| 126 'dependencies': [ | 126 'dependencies': [ |
| 127 'remoting_test_driver_common', | 127 'remoting_test_driver_common', |
| 128 ], | 128 ], |
| 129 'defines': [ | 129 'defines': [ |
| 130 'VERSION=<(version_full)', | 130 'VERSION=<(version_full)', |
| 131 ], | 131 ], |
| 132 'sources': [ | 132 'sources': [ |
| 133 'test/chromoting_host_info.cc', |
| 134 'test/chromoting_host_info.h', |
| 133 'test/chromoting_test_driver.cc', | 135 'test/chromoting_test_driver.cc', |
| 136 'test/hostlist_fetcher.cc', |
| 137 'test/hostlist_fetcher.h', |
| 134 ], | 138 ], |
| 135 'include_dirs': [ | 139 'include_dirs': [ |
| 136 '../testing/gtest/include', | 140 '../testing/gtest/include', |
| 137 ], | 141 ], |
| 138 }, # end of target 'chromoting_test_driver' | 142 }, # end of target 'chromoting_test_driver' |
| 139 { | 143 { |
| 140 'target_name': 'ar_test_driver_common', | 144 'target_name': 'ar_test_driver_common', |
| 141 'type': 'static_library', | 145 'type': 'static_library', |
| 142 'dependencies': [ | 146 'dependencies': [ |
| 143 '../remoting/proto/chromotocol.gyp:chromotocol_proto_lib', | 147 '../remoting/proto/chromotocol.gyp:chromotocol_proto_lib', |
| (...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 605 'dependencies': [ | 609 'dependencies': [ |
| 606 'remoting_nacl.gyp:remoting_client_plugin_nacl', | 610 'remoting_nacl.gyp:remoting_client_plugin_nacl', |
| 607 'remoting_webapp_browser_test_main_html', | 611 'remoting_webapp_browser_test_main_html', |
| 608 ], | 612 ], |
| 609 'includes': [ 'remoting_webapp.gypi', ], | 613 'includes': [ 'remoting_webapp.gypi', ], |
| 610 }, # end of target 'remoting_webapp_browser_test' | 614 }, # end of target 'remoting_webapp_browser_test' |
| 611 ] | 615 ] |
| 612 }] | 616 }] |
| 613 ] # end of 'conditions' | 617 ] # end of 'conditions' |
| 614 } | 618 } |
| OLD | NEW |