| 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 "//base", | 101 "//base", |
| 102 "//google_apis", | 102 "//google_apis", |
| 103 "//net", | 103 "//net", |
| 104 ] | 104 ] |
| 105 } | 105 } |
| 106 | 106 |
| 107 source_set("breakpad") { | 107 source_set("breakpad") { |
| 108 sources = [ | 108 sources = [ |
| 109 "breakpad.h", | 109 "breakpad.h", |
| 110 "breakpad_linux.cc", | 110 "breakpad_linux.cc", |
| 111 "breakpad_linux.h", | |
| 112 "breakpad_mac.mm", | 111 "breakpad_mac.mm", |
| 113 "breakpad_win.cc", | 112 "breakpad_win.cc", |
| 114 ] | 113 ] |
| 115 | 114 |
| 116 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 115 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 117 | 116 |
| 118 deps = [ | 117 deps = [ |
| 119 "//base", | 118 "//base", |
| 120 ] | 119 ] |
| 121 | 120 |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 ] | 179 ] |
| 181 | 180 |
| 182 if (is_win || is_mac || is_chromeos) { | 181 if (is_win || is_mac || is_chromeos) { |
| 183 deps += [ "//breakpad:client" ] | 182 deps += [ "//breakpad:client" ] |
| 184 } | 183 } |
| 185 | 184 |
| 186 if (is_win) { | 185 if (is_win) { |
| 187 libs = [ "rpcrt4.lib" ] # For UuidCreate in breakpad_win_unittest.cc. | 186 libs = [ "rpcrt4.lib" ] # For UuidCreate in breakpad_win_unittest.cc. |
| 188 } | 187 } |
| 189 } | 188 } |
| OLD | NEW |