| 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 25 matching lines...) Expand all Loading... |
| 36 "typed_buffer.h", | 36 "typed_buffer.h", |
| 37 "url_request.h", | 37 "url_request.h", |
| 38 "url_request_context_getter.cc", | 38 "url_request_context_getter.cc", |
| 39 "url_request_context_getter.h", | 39 "url_request_context_getter.h", |
| 40 "util.cc", | 40 "util.cc", |
| 41 "util.h", | 41 "util.h", |
| 42 "vlog_net_log.cc", | 42 "vlog_net_log.cc", |
| 43 "vlog_net_log.h", | 43 "vlog_net_log.h", |
| 44 ] | 44 ] |
| 45 | 45 |
| 46 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 46 configs += [ |
| 47 "//build/config/compiler:wexit_time_destructors", |
| 48 "//remoting/build/config:version", |
| 49 ] |
| 47 | 50 |
| 48 public_deps = [ | 51 public_deps = [ |
| 49 "//base", | 52 "//base", |
| 50 "//net", | 53 "//net", |
| 51 "//remoting/proto", | 54 "//remoting/proto", |
| 52 "//third_party/protobuf:protobuf_lite", | 55 "//third_party/protobuf:protobuf_lite", |
| 53 ] | 56 ] |
| 54 deps = [ | 57 deps = [ |
| 55 "//base/third_party/dynamic_annotations", | 58 "//base/third_party/dynamic_annotations", |
| 56 "//third_party/libvpx", | 59 "//third_party/libvpx", |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 ] | 124 ] |
| 122 | 125 |
| 123 if (is_win || is_mac || is_chromeos) { | 126 if (is_win || is_mac || is_chromeos) { |
| 124 deps += [ "//breakpad:client" ] | 127 deps += [ "//breakpad:client" ] |
| 125 } | 128 } |
| 126 | 129 |
| 127 if (is_win) { | 130 if (is_win) { |
| 128 libs = [ "rpcrt4.lib" ] # For UuidCreate in breakpad_win_unittest.cc. | 131 libs = [ "rpcrt4.lib" ] # For UuidCreate in breakpad_win_unittest.cc. |
| 129 } | 132 } |
| 130 } | 133 } |
| OLD | NEW |