| 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 source_set("base") { | 5 source_set("base") { |
| 6 sources = [ | 6 sources = [ |
| 7 "auto_thread.cc", | 7 "auto_thread.cc", |
| 8 "auto_thread.h", | 8 "auto_thread.h", |
| 9 "auto_thread_task_runner.cc", | 9 "auto_thread_task_runner.cc", |
| 10 "auto_thread_task_runner.h", | 10 "auto_thread_task_runner.h", |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 "telemetry_log_writer_unittest.cc", | 109 "telemetry_log_writer_unittest.cc", |
| 110 "test_rsa_key_pair.h", | 110 "test_rsa_key_pair.h", |
| 111 "typed_buffer_unittest.cc", | 111 "typed_buffer_unittest.cc", |
| 112 "util_unittest.cc", | 112 "util_unittest.cc", |
| 113 ] | 113 ] |
| 114 | 114 |
| 115 deps = [ | 115 deps = [ |
| 116 ":base", | 116 ":base", |
| 117 ":breakpad", | 117 ":breakpad", |
| 118 "//base", | 118 "//base", |
| 119 "//mojo/edk/system", | |
| 120 "//net:test_support", | 119 "//net:test_support", |
| 121 "//testing/gmock", | 120 "//testing/gmock", |
| 122 "//testing/gtest", | 121 "//testing/gtest", |
| 123 "//third_party/libyuv", | 122 "//third_party/libyuv", |
| 124 "//third_party/webrtc/modules/desktop_capture:primitives", | 123 "//third_party/webrtc/modules/desktop_capture:primitives", |
| 125 ] | 124 ] |
| 126 | 125 |
| 127 if (is_win || is_mac || is_chromeos) { | 126 if (is_win || is_mac || is_chromeos) { |
| 128 deps += [ "//breakpad:client" ] | 127 deps += [ "//breakpad:client" ] |
| 129 } | 128 } |
| 130 | 129 |
| 131 if (is_win) { | 130 if (is_win) { |
| 132 libs = [ "rpcrt4.lib" ] # For UuidCreate in breakpad_win_unittest.cc. | 131 libs = [ "rpcrt4.lib" ] # For UuidCreate in breakpad_win_unittest.cc. |
| 133 } | 132 } |
| 134 } | 133 } |
| OLD | NEW |