• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 == "android") {
17  import("//build/config/android/config.gni")
18  build_gn_logs += [ "### android/config.gni ###" ] + android_logs
19  build_gn_logs += [ "" ]
20}
21
22if (target_os == "ios") {
23  import("//build/config/ios/ios_sdk.gni")
24  import("//build/config/mac/mac_sdk.gni")
25  build_gn_logs += [ "### ios_sdk.gni ###" ] + ios_sdk_logs
26  build_gn_logs += [ "" ]
27  build_gn_logs += [ "### mac_sdk.gni ###" ] + mac_sdk_logs
28  build_gn_logs += [ "" ]
29}
30
31if (target_os == "mac") {
32  import("//build/config/mac/mac_sdk.gni")
33  build_gn_logs += [ "### mac_sdk.gni ###" ] + mac_sdk_logs
34  build_gn_logs += [ "" ]
35}
36
37if (target_os == "win") {
38  import("//build/config/win/visual_studio_version.gni")
39  build_gn_logs +=
40      [ "### visual_studio_version.gni ###" ] + visual_studio_version_logs
41  build_gn_logs += [ "" ]
42}
43
44if (target_os == "fuchsia") {
45  import("//build/config/fuchsia/gn_configs.gni")
46  build_gn_logs += [ "### fuchsia/gn_configs.gni ###" ] + fuchsia_gn_logs
47  build_gn_logs += [ "" ]
48}
49
50build_gn_logs += [ "#### get_concurrent_links.py ####" ] + concurrent_links_logs
51