aboutsummaryrefslogtreecommitdiff
path: root/tools/build_all_configs.py
blob: d4d1517320cef819132504344c90f9b8421193b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#!/usr/bin/env python
# Copyright (C) 2017 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import argparse
import os
import subprocess
import sys

MAC_BUILD_CONFIGS = {
  'mac_debug': ['is_clang=true', 'is_debug=true'],
  'mac_release': ['is_clang=true', 'is_debug=false'],
  'mac_asan': ['is_clang=true', 'is_debug=false', 'is_asan=true'],
  'mac_tsan': ['is_clang=true', 'is_debug=false', 'is_tsan=true'],
  'mac_ubsan': ['is_clang=true', 'is_debug=false', 'is_ubsan=true'],
}

ANDROID_BUILD_CONFIGS = {
  'android_debug': ['target_os="android"', 'is_clang=true', 'is_debug=true'],
  'android_release': ['target_os="android"', 'is_clang=true', 'is_debug=false'],
  'android_release_incl_heapprofd':
    ['target_os="android"', 'is_clang=true', 'is_debug=false', 'android_api_level=26'],
  'android_asan': ['target_os="android"', 'is_clang=true', 'is_debug=false', 'is_asan=true'],
  'android_lsan': ['target_os="android"', 'is_clang=true', 'is_debug=false', 'is_lsan=true'],
}

ANDROID_ARCHS = [ 'arm', 'arm64' ]

LINUX_BUILD_CONFIGS = {
  'linux_gcc_debug': ['is_clang=false', 'is_debug=true'],
  'linux_gcc_release': ['is_clang=false', 'is_debug=false'],
  'linux_clang_debug': ['is_clang=true', 'is_debug=true'],
  'linux_clang_release': ['is_clang=true', 'is_debug=false'],
  'linux_asan': ['is_clang=true', 'is_debug=false', 'is_asan=true'],
  'linux_lsan': ['is_clang=true', 'is_debug=false', 'is_lsan=true'],
  'linux_msan': ['is_clang=true', 'is_debug=false', 'is_msan=true'],
  'linux_tsan': ['is_clang=true', 'is_debug=false', 'is_tsan=true'],
  'linux_ubsan': ['is_clang=true', 'is_debug=false', 'is_ubsan=true'],
  'linux_fuzzer': ['is_clang=true', 'is_debug=false', 'is_fuzzer=true',
                   'is_asan=true'],
}

ROOT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))

def main():
  parser = argparse.ArgumentParser()
  parser.add_argument('--host-only', action='store_true', default=False)
  parser.add_argument('--build', default=None)
  args = parser.parse_args()

  configs = {}
  if not args.host_only:
    for config_name, gn_args in ANDROID_BUILD_CONFIGS.iteritems():
      for arch in ANDROID_ARCHS:
        full_config_name = '%s_%s' % (config_name, arch)
        configs[full_config_name] = gn_args + ['target_cpu="%s"' % arch]

  if sys.platform == 'linux2':
    configs.update(LINUX_BUILD_CONFIGS)
  elif sys.platform == 'darwin':
    configs.update(MAC_BUILD_CONFIGS)
  else:
    assert(False)

  out_base_dir = os.path.join(ROOT_DIR, 'out')
  if not os.path.isdir(out_base_dir):
    os.mkdir(out_base_dir)

  gn = os.path.join(ROOT_DIR, 'tools', 'gn')

  for config_name, gn_args in configs.iteritems():
    print '\n\033[32mBuilding %-20s[%s]\033[0m' % (config_name, ','.join(gn_args))
    out_dir = os.path.join(ROOT_DIR, 'out', config_name)
    if not os.path.isdir(out_dir):
      os.mkdir(out_dir)
    gn_cmd = [gn, 'gen', out_dir, '--args=%s' % (' '.join(gn_args)), '--check']
    print ' '.join(gn_cmd)
    subprocess.check_call(gn_cmd, cwd=ROOT_DIR)
    if args.build:
      ninja = os.path.join(ROOT_DIR, 'tools', 'ninja')
      ninja_cmd = [ninja, '-C', '.', args.build]
      subprocess.check_call(ninja_cmd, cwd=out_dir)


if __name__ == '__main__':
  sys.exit(main())