| 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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 "win/module_version.h", | 182 "win/module_version.h", |
| 183 "win/nt_internals.cc", | 183 "win/nt_internals.cc", |
| 184 "win/nt_internals.h", | 184 "win/nt_internals.h", |
| 185 "win/ntstatus_logging.cc", | 185 "win/ntstatus_logging.cc", |
| 186 "win/ntstatus_logging.h", | 186 "win/ntstatus_logging.h", |
| 187 "win/process_info.cc", | 187 "win/process_info.cc", |
| 188 "win/process_info.h", | 188 "win/process_info.h", |
| 189 "win/process_structs.h", | 189 "win/process_structs.h", |
| 190 "win/registration_protocol_win.cc", | 190 "win/registration_protocol_win.cc", |
| 191 "win/registration_protocol_win.h", | 191 "win/registration_protocol_win.h", |
| 192 "win/safe_terminate_process.asm", |
| 193 "win/safe_terminate_process.h", |
| 192 "win/scoped_handle.cc", | 194 "win/scoped_handle.cc", |
| 193 "win/scoped_handle.h", | 195 "win/scoped_handle.h", |
| 194 "win/scoped_local_alloc.cc", | 196 "win/scoped_local_alloc.cc", |
| 195 "win/scoped_local_alloc.h", | 197 "win/scoped_local_alloc.h", |
| 196 "win/scoped_process_suspend.cc", | 198 "win/scoped_process_suspend.cc", |
| 197 "win/scoped_process_suspend.h", | 199 "win/scoped_process_suspend.h", |
| 198 "win/session_end_watcher.cc", | 200 "win/session_end_watcher.cc", |
| 199 "win/session_end_watcher.h", | 201 "win/session_end_watcher.h", |
| 200 "win/termination_codes.h", | 202 "win/termination_codes.h", |
| 201 "win/time.cc", | 203 "win/time.cc", |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 } else if (is_mac) { | 271 } else if (is_mac) { |
| 270 sources += get_target_outputs(":mig") | 272 sources += get_target_outputs(":mig") |
| 271 deps += [ ":mig" ] | 273 deps += [ ":mig" ] |
| 272 libs = [ | 274 libs = [ |
| 273 "CoreFoundation.framework", | 275 "CoreFoundation.framework", |
| 274 "Foundation.framework", | 276 "Foundation.framework", |
| 275 "IOKit.framework", | 277 "IOKit.framework", |
| 276 ] | 278 ] |
| 277 } | 279 } |
| 278 } | 280 } |
| OLD | NEW |