| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//build/toolchain/toolchain.gni") | 5 import("//build/toolchain/toolchain.gni") |
| 6 | 6 |
| 7 if (is_mac) { | 7 if (is_mac) { |
| 8 import("//build/config/sysroot.gni") | 8 import("//build/config/sysroot.gni") |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 "win/critical_section_with_debug_info.cc", | 144 "win/critical_section_with_debug_info.cc", |
| 145 "win/critical_section_with_debug_info.h", | 145 "win/critical_section_with_debug_info.h", |
| 146 "win/exception_handler_server.cc", | 146 "win/exception_handler_server.cc", |
| 147 "win/exception_handler_server.h", | 147 "win/exception_handler_server.h", |
| 148 "win/get_function.cc", | 148 "win/get_function.cc", |
| 149 "win/get_function.h", | 149 "win/get_function.h", |
| 150 "win/get_module_information.cc", | 150 "win/get_module_information.cc", |
| 151 "win/get_module_information.h", | 151 "win/get_module_information.h", |
| 152 "win/handle.cc", | 152 "win/handle.cc", |
| 153 "win/handle.h", | 153 "win/handle.h", |
| 154 "win/initial_client_data.cc", |
| 155 "win/initial_client_data.h", |
| 154 "win/module_version.cc", | 156 "win/module_version.cc", |
| 155 "win/module_version.h", | 157 "win/module_version.h", |
| 156 "win/nt_internals.cc", | 158 "win/nt_internals.cc", |
| 157 "win/nt_internals.h", | 159 "win/nt_internals.h", |
| 158 "win/ntstatus_logging.cc", | 160 "win/ntstatus_logging.cc", |
| 159 "win/ntstatus_logging.h", | 161 "win/ntstatus_logging.h", |
| 160 "win/process_info.cc", | 162 "win/process_info.cc", |
| 161 "win/process_info.h", | 163 "win/process_info.h", |
| 162 "win/process_structs.h", | 164 "win/process_structs.h", |
| 163 "win/registration_protocol_win.cc", | 165 "win/registration_protocol_win.cc", |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 } else if (is_mac) { | 244 } else if (is_mac) { |
| 243 sources += get_target_outputs(":mig") | 245 sources += get_target_outputs(":mig") |
| 244 deps += [ ":mig" ] | 246 deps += [ ":mig" ] |
| 245 libs = [ | 247 libs = [ |
| 246 "CoreFoundation.framework", | 248 "CoreFoundation.framework", |
| 247 "Foundation.framework", | 249 "Foundation.framework", |
| 248 "IOKit.framework", | 250 "IOKit.framework", |
| 249 ] | 251 ] |
| 250 } | 252 } |
| 251 } | 253 } |
| OLD | NEW |