xref: /aosp_15_r20/external/angle/build/gn_logs.gni (revision 8975f5c5ed3d1c378011245431ada316dfb6f244)
1# Copyright 2020 The Chromium Authors
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5import("//build/config/compiler/compiler.gni")
6import("//build/toolchain/concurrent_links.gni")
7import("//build/toolchain/rbe.gni")
8
9build_gn_logs = [ "### rbe.gni ###" ] + rbe_logs
10build_gn_logs += [ "" ]
11
12# Log lines for gn_logs.txt that originate from within //build.
13build_gn_logs += [ "### compiler.gni ###" ] + compiler_logs
14build_gn_logs += [ "" ]
15
16if (target_os == "ios") {
17  import("//build/config/ios/ios_sdk.gni")
18  import("//build/config/mac/mac_sdk.gni")
19  build_gn_logs += [ "### ios_sdk.gni ###" ] + ios_sdk_logs
20  build_gn_logs += [ "" ]
21  build_gn_logs += [ "### mac_sdk.gni ###" ] + mac_sdk_logs
22  build_gn_logs += [ "" ]
23}
24
25if (target_os == "mac") {
26  import("//build/config/mac/mac_sdk.gni")
27  build_gn_logs += [ "### mac_sdk.gni ###" ] + mac_sdk_logs
28  build_gn_logs += [ "" ]
29}
30
31if (target_os == "win") {
32  import("//build/config/win/visual_studio_version.gni")
33  build_gn_logs +=
34      [ "### visual_studio_version.gni ###" ] + visual_studio_version_logs
35  build_gn_logs += [ "" ]
36}
37
38if (target_os == "fuchsia") {
39  import("//build/config/fuchsia/gn_configs.gni")
40  build_gn_logs += [ "### fuchsia/gn_configs.gni ###" ] + fuchsia_gn_logs
41  build_gn_logs += [ "" ]
42}
43
44build_gn_logs += [ "#### get_concurrent_links.py ####" ] + concurrent_links_logs
45