| 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 import("//remoting/remoting_srcs.gni") | 5 import("//remoting/remoting_srcs.gni") |
| 6 | 6 |
| 7 source_set("base") { | 7 source_set("base") { |
| 8 sources = rebase_path(remoting_srcs_gypi_values.remoting_base_sources, | 8 sources = rebase_path(remoting_srcs_gypi_values.remoting_base_sources, |
| 9 ".", | 9 ".", |
| 10 "//remoting") | 10 "//remoting") |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 testonly = true | 54 testonly = true |
| 55 | 55 |
| 56 sources = [ | 56 sources = [ |
| 57 "auto_thread_task_runner_unittest.cc", | 57 "auto_thread_task_runner_unittest.cc", |
| 58 "auto_thread_unittest.cc", | 58 "auto_thread_unittest.cc", |
| 59 "breakpad_win_unittest.cc", | 59 "breakpad_win_unittest.cc", |
| 60 "buffered_socket_writer_unittest.cc", | 60 "buffered_socket_writer_unittest.cc", |
| 61 "capabilities_unittest.cc", | 61 "capabilities_unittest.cc", |
| 62 "compound_buffer_unittest.cc", | 62 "compound_buffer_unittest.cc", |
| 63 "rate_counter_unittest.cc", | 63 "rate_counter_unittest.cc", |
| 64 "resources_unittest.cc", | |
| 65 "rsa_key_pair_unittest.cc", | 64 "rsa_key_pair_unittest.cc", |
| 66 "run_all_unittests.cc", | 65 "run_all_unittests.cc", |
| 67 "running_average_unittest.cc", | 66 "running_average_unittest.cc", |
| 68 "test_rsa_key_pair.h", | 67 "test_rsa_key_pair.h", |
| 69 "typed_buffer_unittest.cc", | 68 "typed_buffer_unittest.cc", |
| 70 "util_unittest.cc", | 69 "util_unittest.cc", |
| 71 ] | 70 ] |
| 72 | 71 |
| 73 deps = [ | 72 deps = [ |
| 74 ":base", | 73 ":base", |
| 75 ":breakpad", | 74 ":breakpad", |
| 76 "//base", | 75 "//base", |
| 77 "//net:test_support", | 76 "//net:test_support", |
| 78 "//testing/gmock", | 77 "//testing/gmock", |
| 79 "//testing/gtest", | 78 "//testing/gtest", |
| 80 "//third_party/libyuv", | 79 "//third_party/libyuv", |
| 81 "//third_party/webrtc/modules/desktop_capture", | 80 "//third_party/webrtc/modules/desktop_capture", |
| 82 ] | 81 ] |
| 83 | 82 |
| 84 if (is_win || is_mac || is_chromeos) { | 83 if (is_win || is_mac || is_chromeos) { |
| 85 deps += [ "//breakpad:client" ] | 84 deps += [ "//breakpad:client" ] |
| 86 } | 85 } |
| 87 | 86 |
| 88 if (is_win) { | 87 if (is_win) { |
| 89 libs = [ "rpcrt4.lib" ] # For UuidCreate in breakpad_win_unittest.cc. | 88 libs = [ "rpcrt4.lib" ] # For UuidCreate in breakpad_win_unittest.cc. |
| 90 } | 89 } |
| 91 } | 90 } |
| OLD | NEW |