| OLD | NEW |
| 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//remoting/remoting_version.gni") | 7 import("//remoting/remoting_version.gni") |
| 8 import("//remoting/remoting_enable.gni") | 8 import("//remoting/remoting_enable.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 | 10 |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 # Sources not included in one of the more specific unit_tests deps. | 143 # Sources not included in one of the more specific unit_tests deps. |
| 144 sources = [ | 144 sources = [ |
| 145 "signaling/iq_sender_unittest.cc", | 145 "signaling/iq_sender_unittest.cc", |
| 146 "signaling/log_to_server_unittest.cc", | 146 "signaling/log_to_server_unittest.cc", |
| 147 "signaling/server_log_entry_unittest.cc", | 147 "signaling/server_log_entry_unittest.cc", |
| 148 "signaling/server_log_entry_unittest.h", | 148 "signaling/server_log_entry_unittest.h", |
| 149 "test/access_token_fetcher_unittest.cc", | 149 "test/access_token_fetcher_unittest.cc", |
| 150 "test/app_remoting_test_driver_environment_unittest.cc", | 150 "test/app_remoting_test_driver_environment_unittest.cc", |
| 151 "test/remote_host_info_fetcher_unittest.cc", | 151 "test/remote_host_info_fetcher_unittest.cc", |
| 152 "test/test_chromoting_client_unittest.cc", | 152 "test/test_chromoting_client_unittest.cc", |
| 153 "test/test_video_renderer_unittest.cc", |
| 153 ] | 154 ] |
| 154 | 155 |
| 155 configs += [ | 156 configs += [ |
| 156 ":version", | 157 ":version", |
| 157 | 158 |
| 158 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 159 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 159 "//build/config/compiler:no_size_t_to_int_warning", | 160 "//build/config/compiler:no_size_t_to_int_warning", |
| 160 ] | 161 ] |
| 161 | 162 |
| 162 deps = [ | 163 deps = [ |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 } | 270 } |
| 270 } | 271 } |
| 271 | 272 |
| 272 group("remoting_key_tester_pexe") { | 273 group("remoting_key_tester_pexe") { |
| 273 # TODO(GYP): crbug.com/471924 implement me when we have a pnacl toolchain. | 274 # TODO(GYP): crbug.com/471924 implement me when we have a pnacl toolchain. |
| 274 #sources = [ | 275 #sources = [ |
| 275 # "tools/javascript_key_tester/pnacl/remoting_key_tester.cc", | 276 # "tools/javascript_key_tester/pnacl/remoting_key_tester.cc", |
| 276 #] | 277 #] |
| 277 } | 278 } |
| 278 } | 279 } |
| OLD | NEW |