| 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", |
| 11 "buffered_socket_writer.cc", | 11 "buffered_socket_writer.cc", |
| 12 "buffered_socket_writer.h", | 12 "buffered_socket_writer.h", |
| 13 "capabilities.cc", | 13 "capabilities.cc", |
| 14 "capabilities.h", | 14 "capabilities.h", |
| 15 "chromium_url_request.cc", | 15 "chromium_url_request.cc", |
| 16 "chromium_url_request.h", | 16 "chromium_url_request.h", |
| 17 "chromoting_event.cc", | 17 "chromoting_event.cc", |
| 18 "chromoting_event.h", | 18 "chromoting_event.h", |
| 19 "compound_buffer.cc", | 19 "compound_buffer.cc", |
| 20 "compound_buffer.h", | 20 "compound_buffer.h", |
| 21 "constants.cc", | 21 "constants.cc", |
| 22 "constants.h", | 22 "constants.h", |
| 23 "leaky_bucket.cc", |
| 24 "leaky_bucket.h", |
| 23 "rate_counter.cc", | 25 "rate_counter.cc", |
| 24 "rate_counter.h", | 26 "rate_counter.h", |
| 25 "rsa_key_pair.cc", | 27 "rsa_key_pair.cc", |
| 26 "rsa_key_pair.h", | 28 "rsa_key_pair.h", |
| 27 "running_samples.cc", | 29 "running_samples.cc", |
| 28 "running_samples.h", | 30 "running_samples.h", |
| 29 "scoped_sc_handle_win.h", | 31 "scoped_sc_handle_win.h", |
| 30 "socket_reader.cc", | 32 "socket_reader.cc", |
| 31 "socket_reader.h", | 33 "socket_reader.h", |
| 32 "telemetry_log_writer.cc", | 34 "telemetry_log_writer.cc", |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 ] | 121 ] |
| 120 | 122 |
| 121 if (is_win || is_mac || is_chromeos) { | 123 if (is_win || is_mac || is_chromeos) { |
| 122 deps += [ "//breakpad:client" ] | 124 deps += [ "//breakpad:client" ] |
| 123 } | 125 } |
| 124 | 126 |
| 125 if (is_win) { | 127 if (is_win) { |
| 126 libs = [ "rpcrt4.lib" ] # For UuidCreate in breakpad_win_unittest.cc. | 128 libs = [ "rpcrt4.lib" ] # For UuidCreate in breakpad_win_unittest.cc. |
| 127 } | 129 } |
| 128 } | 130 } |
| OLD | NEW |