summaryrefslogtreecommitdiffstats
path: root/tools/auto_bisect
diff options
context:
space:
mode:
authorqyearsley@chromium.org <qyearsley@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-08-15 22:59:07 +0000
committerqyearsley@chromium.org <qyearsley@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-08-15 23:00:13 +0000
commit9a341ca5ce10ddcdca8b750df56bc2e9eb46ba4e (patch)
treeb9b5fe177b94852ba9d5ee007da7e17745d65876 /tools/auto_bisect
parent1048108b4e6b3281ca2f4f15c6198d899cc1c0c6 (diff)
downloadchromium_src-9a341ca5ce10ddcdca8b750df56bc2e9eb46ba4e.zip
chromium_src-9a341ca5ce10ddcdca8b750df56bc2e9eb46ba4e.tar.gz
chromium_src-9a341ca5ce10ddcdca8b750df56bc2e9eb46ba4e.tar.bz2
Extract Builder and subclasses to separate module.
BUG= Review URL: https://codereview.chromium.org/429763003 Cr-Commit-Position: refs/heads/master@{#290037} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@290037 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/auto_bisect')
-rw-r--r--tools/auto_bisect/bisect_utils.py156
-rw-r--r--tools/auto_bisect/builder.py450
2 files changed, 488 insertions, 118 deletions
diff --git a/tools/auto_bisect/bisect_utils.py b/tools/auto_bisect/bisect_utils.py
index 4b55a60..5e80d51 100644
--- a/tools/auto_bisect/bisect_utils.py
+++ b/tools/auto_bisect/bisect_utils.py
@@ -65,17 +65,24 @@ GCLIENT_CUSTOM_DEPS_V8 = {'src/v8_bleeding_edge': 'git://github.com/v8/v8.git'}
FILE_DEPS_GIT = '.DEPS.git'
FILE_DEPS = 'DEPS'
+REPO_SYNC_COMMAND = ('git checkout -f $(git rev-list --max-count=1 '
+ '--before=%d remotes/m/master)')
+
+# Paths to CrOS-related files.
+# WARNING(qyearsley, 2014-08-15): These haven't been tested recently.
+CROS_SDK_PATH = os.path.join('..', 'cros', 'chromite', 'bin', 'cros_sdk')
+CROS_TEST_KEY_PATH = os.path.join(
+ '..', 'cros', 'chromite', 'ssh_keys', 'testing_rsa')
+CROS_SCRIPT_KEY_PATH = os.path.join(
+ '..', 'cros', 'src', 'scripts', 'mod_for_test_scripts', 'ssh_keys',
+ 'testing_rsa')
+
REPO_PARAMS = [
'https://chrome-internal.googlesource.com/chromeos/manifest-internal/',
'--repo-url',
'https://git.chromium.org/external/repo.git'
]
-REPO_SYNC_COMMAND = ('git checkout -f $(git rev-list --max-count=1 '
- '--before=%d remotes/m/master)')
-
-ORIGINAL_ENV = {}
-
def OutputAnnotationStepStart(name):
"""Outputs annotation to signal the start of a step to a trybot.
@@ -197,6 +204,32 @@ def RunGClient(params, cwd=None):
return _SubprocessCall(cmd, cwd=cwd)
+def SetupCrosRepo():
+ """Sets up CrOS repo for bisecting ChromeOS.
+
+ Returns:
+ True if successful, False otherwise.
+ """
+ cwd = os.getcwd()
+ try:
+ os.mkdir('cros')
+ except OSError as e:
+ if e.errno != errno.EEXIST: # EEXIST means the directory already exists.
+ return False
+ os.chdir('cros')
+
+ cmd = ['init', '-u'] + REPO_PARAMS
+
+ passed = False
+
+ if not _RunRepo(cmd):
+ if not _RunRepo(['sync']):
+ passed = True
+ os.chdir(cwd)
+
+ return passed
+
+
def _RunRepo(params):
"""Runs CrOS repo command with specified parameters.
@@ -383,119 +416,6 @@ def SetupGitDepot(opts, custom_deps):
return passed
-def SetupCrosRepo():
- """Sets up CrOS repo for bisecting ChromeOS.
-
- Returns:
- True if successful, False otherwise.
- """
- cwd = os.getcwd()
- try:
- os.mkdir('cros')
- except OSError as e:
- if e.errno != errno.EEXIST: # EEXIST means the directory already exists.
- return False
- os.chdir('cros')
-
- cmd = ['init', '-u'] + REPO_PARAMS
-
- passed = False
-
- if not _RunRepo(cmd):
- if not _RunRepo(['sync']):
- passed = True
- os.chdir(cwd)
-
- return passed
-
-
-def CopyAndSaveOriginalEnvironmentVars():
- """Makes a copy of the current environment variables.
-
- Before making a copy of the environment variables and setting a global
- variable, this function unsets a certain set of environment variables.
- """
- # TODO: Waiting on crbug.com/255689, will remove this after.
- vars_to_remove = [
- 'CHROME_SRC',
- 'CHROMIUM_GYP_FILE',
- 'GYP_CROSSCOMPILE',
- 'GYP_DEFINES',
- 'GYP_GENERATORS',
- 'GYP_GENERATOR_FLAGS',
- 'OBJCOPY',
- ]
- for key in os.environ:
- if 'ANDROID' in key:
- vars_to_remove.append(key)
- for key in vars_to_remove:
- if os.environ.has_key(key):
- del os.environ[key]
-
- global ORIGINAL_ENV
- ORIGINAL_ENV = os.environ.copy()
-
-
-def SetupAndroidBuildEnvironment(opts, path_to_src=None):
- """Sets up the android build environment.
-
- Args:
- opts: The options parsed from the command line through parse_args().
- path_to_src: Path to the src checkout.
-
- Returns:
- True if successful.
- """
- # Revert the environment variables back to default before setting them up
- # with envsetup.sh.
- env_vars = os.environ.copy()
- for k, _ in env_vars.iteritems():
- del os.environ[k]
- for k, v in ORIGINAL_ENV.iteritems():
- os.environ[k] = v
-
- envsetup_path = os.path.join('build', 'android', 'envsetup.sh')
- proc = subprocess.Popen(['bash', '-c', 'source %s && env' % envsetup_path],
- stdout=subprocess.PIPE,
- stderr=subprocess.PIPE,
- cwd=path_to_src)
- out, _ = proc.communicate()
-
- for line in out.splitlines():
- k, _, v = line.partition('=')
- os.environ[k] = v
-
- # envsetup.sh no longer sets OS=android in GYP_DEFINES environment variable.
- # (See http://crrev.com/170273005). So, we set this variable explicitly here
- # in order to build Chrome on Android.
- if 'GYP_DEFINES' not in os.environ:
- os.environ['GYP_DEFINES'] = 'OS=android'
- else:
- os.environ['GYP_DEFINES'] += ' OS=android'
-
- if opts.use_goma:
- os.environ['GYP_DEFINES'] += ' use_goma=1'
- return not proc.returncode
-
-
-def SetupPlatformBuildEnvironment(opts):
- """Performs any platform-specific setup.
-
- Args:
- opts: The options parsed from the command line through parse_args().
-
- Returns:
- True if successful.
- """
- if 'android' in opts.target_platform:
- CopyAndSaveOriginalEnvironmentVars()
- return SetupAndroidBuildEnvironment(opts)
- elif opts.target_platform == 'cros':
- return SetupCrosRepo()
-
- return True
-
-
def CheckIfBisectDepotExists(opts):
"""Checks if the bisect directory already exists.
diff --git a/tools/auto_bisect/builder.py b/tools/auto_bisect/builder.py
new file mode 100644
index 0000000..c54f9fa
--- /dev/null
+++ b/tools/auto_bisect/builder.py
@@ -0,0 +1,450 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+"""Classes and functions for building Chrome.
+
+This includes functions for running commands to build, as well as
+specific rules about which targets to build.
+"""
+
+import os
+import subprocess
+import sys
+
+import bisect_utils
+
+ORIGINAL_ENV = {}
+
+
+class Builder(object):
+ """Subclasses of the Builder class are used by the bisect script to build
+ relevant targets.
+ """
+ def __init__(self, opts):
+ """Performs setup for building with target build system.
+
+ Args:
+ opts: Options parsed from command line.
+
+ Raises:
+ RuntimeError: Some condition necessary for building was not met.
+ """
+ if bisect_utils.IsWindowsHost():
+ if not opts.build_preference:
+ opts.build_preference = 'msvs'
+
+ if opts.build_preference == 'msvs':
+ if not os.getenv('VS100COMNTOOLS'):
+ raise RuntimeError(
+ 'Path to visual studio could not be determined.')
+ else:
+ SetBuildSystemDefault(opts.build_preference, opts.use_goma,
+ opts.goma_dir)
+ else:
+ if not opts.build_preference:
+ if 'ninja' in os.getenv('GYP_GENERATORS', default=''):
+ opts.build_preference = 'ninja'
+ else:
+ opts.build_preference = 'make'
+
+ SetBuildSystemDefault(opts.build_preference, opts.use_goma, opts.goma_dir)
+
+ if not SetupPlatformBuildEnvironment(opts):
+ raise RuntimeError('Failed to set platform environment.')
+
+ @staticmethod
+ def FromOpts(opts):
+ """Constructs and returns a Builder object.
+
+ Args:
+ opts: Options parsed from the command-line.
+ """
+ builder = None
+ if opts.target_platform == 'cros':
+ builder = CrosBuilder(opts)
+ elif opts.target_platform == 'android':
+ builder = AndroidBuilder(opts)
+ elif opts.target_platform == 'android-chrome':
+ builder = AndroidChromeBuilder(opts)
+ else:
+ builder = DesktopBuilder(opts)
+ return builder
+
+ def Build(self, depot, opts):
+ """Runs a command to build Chrome."""
+ raise NotImplementedError()
+
+
+def GetBuildOutputDirectory(opts, src_dir=None):
+ """Returns the path to the build directory, relative to the checkout root.
+
+ Assumes that the current working directory is the checkout root.
+
+ Args:
+ opts: Command-line options.
+ src_dir: Path to chromium/src directory.
+
+ Returns:
+ A path to the directory to use as build output directory.
+
+ Raises:
+ NotImplementedError: The platform according to sys.platform is unexpected.
+ """
+ src_dir = src_dir or 'src'
+ if opts.build_preference == 'ninja' or bisect_utils.IsLinuxHost():
+ return os.path.join(src_dir, 'out')
+ if bisect_utils.IsMacHost():
+ return os.path.join(src_dir, 'xcodebuild')
+ if bisect_utils.IsWindowsHost():
+ return os.path.join(src_dir, 'build')
+ raise NotImplementedError('Unexpected platform %s' % sys.platform)
+
+
+class DesktopBuilder(Builder):
+ """DesktopBuilder is used to build Chromium on Linux, Mac, or Windows."""
+
+ def __init__(self, opts):
+ super(DesktopBuilder, self).__init__(opts)
+
+ def Build(self, depot, opts):
+ """Builds chromium_builder_perf target using options passed into the script.
+
+ Args:
+ depot: Name of current depot being bisected.
+ opts: The options parsed from the command line.
+
+ Returns:
+ True if build was successful.
+ """
+ targets = ['chromium_builder_perf']
+
+ threads = None
+ if opts.use_goma:
+ threads = 64
+
+ build_success = False
+ if opts.build_preference == 'make':
+ build_success = BuildWithMake(threads, targets, opts.target_build_type)
+ elif opts.build_preference == 'ninja':
+ build_success = BuildWithNinja(threads, targets, opts.target_build_type)
+ elif opts.build_preference == 'msvs':
+ assert bisect_utils.IsWindowsHost(), 'msvs is only supported on Windows.'
+ build_success = BuildWithVisualStudio(targets, opts.target_build_type)
+ else:
+ assert False, 'No build system defined.'
+ return build_success
+
+
+class AndroidBuilder(Builder):
+ """AndroidBuilder is used to build on android."""
+
+ def __init__(self, opts):
+ super(AndroidBuilder, self).__init__(opts)
+
+ def _GetTargets(self):
+ """Returns a list of build targets."""
+ return ['chrome_shell_apk', 'cc_perftests_apk', 'android_tools']
+
+ def Build(self, depot, opts):
+ """Builds the android content shell and other necessary tools.
+
+ Args:
+ depot: Current depot being bisected.
+ opts: The options parsed from the command line.
+
+ Returns:
+ True if build was successful.
+ """
+ threads = None
+ if opts.use_goma:
+ threads = 64
+
+ build_success = False
+ if opts.build_preference == 'ninja':
+ build_success = BuildWithNinja(
+ threads, self._GetTargets(), opts.target_build_type)
+ else:
+ assert False, 'No build system defined.'
+
+ return build_success
+
+
+class AndroidChromeBuilder(AndroidBuilder):
+ """AndroidChromeBuilder is used to build "android-chrome".
+
+ This is slightly different from AndroidBuilder.
+ """
+
+ def __init__(self, opts):
+ super(AndroidChromeBuilder, self).__init__(opts)
+
+ def _GetTargets(self):
+ """Returns a list of build targets."""
+ return AndroidBuilder._GetTargets(self) + ['chrome_apk']
+
+
+class CrosBuilder(Builder):
+ """CrosBuilder is used to build and image ChromeOS/Chromium.
+
+ WARNING(qyearsley, 2014-08-15): This hasn't been tested recently.
+ """
+
+ def __init__(self, opts):
+ super(CrosBuilder, self).__init__(opts)
+
+ @staticmethod
+ def ImageToTarget(opts):
+ """Installs latest image to target specified by opts.cros_remote_ip.
+
+ Args:
+ opts: Program options containing cros_board and cros_remote_ip.
+
+ Returns:
+ True if successful.
+ """
+ try:
+ # Keys will most likely be set to 0640 after wiping the chroot.
+ os.chmod(bisect_utils.CROS_SCRIPT_KEY_PATH, 0600)
+ os.chmod(bisect_utils.CROS_TEST_KEY_PATH, 0600)
+ cmd = [bisect_utils.CROS_SDK_PATH, '--', './bin/cros_image_to_target.py',
+ '--remote=%s' % opts.cros_remote_ip,
+ '--board=%s' % opts.cros_board, '--test', '--verbose']
+
+ return_code = bisect_utils.RunProcess(cmd)
+ return not return_code
+ except OSError:
+ return False
+
+ @staticmethod
+ def BuildPackages(opts, depot):
+ """Builds packages for cros.
+
+ Args:
+ opts: Program options containing cros_board.
+ depot: The depot being bisected.
+
+ Returns:
+ True if successful.
+ """
+ cmd = [bisect_utils.CROS_SDK_PATH]
+
+ if depot != 'cros':
+ path_to_chrome = os.path.join(os.getcwd(), '..')
+ cmd += ['--chrome_root=%s' % path_to_chrome]
+
+ cmd += ['--']
+
+ if depot != 'cros':
+ cmd += ['CHROME_ORIGIN=LOCAL_SOURCE']
+
+ cmd += ['BUILDTYPE=%s' % opts.target_build_type, './build_packages',
+ '--board=%s' % opts.cros_board]
+ return_code = bisect_utils.RunProcess(cmd)
+
+ return not return_code
+
+ @staticmethod
+ def BuildImage(opts, depot):
+ """Builds test image for cros.
+
+ Args:
+ opts: Program options containing cros_board.
+ depot: The depot being bisected.
+
+ Returns:
+ True if successful.
+ """
+ cmd = [bisect_utils.CROS_SDK_PATH]
+
+ if depot != 'cros':
+ path_to_chrome = os.path.join(os.getcwd(), '..')
+ cmd += ['--chrome_root=%s' % path_to_chrome]
+
+ cmd += ['--']
+
+ if depot != 'cros':
+ cmd += ['CHROME_ORIGIN=LOCAL_SOURCE']
+
+ cmd += ['BUILDTYPE=%s' % opts.target_build_type, '--', './build_image',
+ '--board=%s' % opts.cros_board, 'test']
+
+ return_code = bisect_utils.RunProcess(cmd)
+
+ return not return_code
+
+ def Build(self, depot, opts):
+ """Builds targets using options passed into the script.
+
+ Args:
+ depot: Current depot being bisected.
+ opts: The options parsed from the command line.
+
+ Returns:
+ True if build was successful.
+ """
+ if self.BuildPackages(opts, depot):
+ if self.BuildImage(opts, depot):
+ return self.ImageToTarget(opts)
+ return False
+
+
+def SetBuildSystemDefault(build_system, use_goma, goma_dir):
+ """Sets up any environment variables needed to build with the specified build
+ system.
+
+ Args:
+ build_system: A string specifying build system. Currently only 'ninja' or
+ 'make' are supported.
+ """
+ if build_system == 'ninja':
+ gyp_var = os.getenv('GYP_GENERATORS', default='')
+
+ if not gyp_var or not 'ninja' in gyp_var:
+ if gyp_var:
+ os.environ['GYP_GENERATORS'] = gyp_var + ',ninja'
+ else:
+ os.environ['GYP_GENERATORS'] = 'ninja'
+
+ if bisect_utils.IsWindowsHost():
+ os.environ['GYP_DEFINES'] = 'component=shared_library '\
+ 'incremental_chrome_dll=1 disable_nacl=1 fastbuild=1 '\
+ 'chromium_win_pch=0'
+
+ elif build_system == 'make':
+ os.environ['GYP_GENERATORS'] = 'make'
+ else:
+ raise RuntimeError('%s build not supported.' % build_system)
+
+ if use_goma:
+ os.environ['GYP_DEFINES'] = '%s %s' % (os.getenv('GYP_DEFINES', default=''),
+ 'use_goma=1')
+ if goma_dir:
+ os.environ['GYP_DEFINES'] += ' gomadir=%s' % goma_dir
+
+
+def SetupPlatformBuildEnvironment(opts):
+ """Performs any platform-specific setup.
+
+ Args:
+ opts: The options parsed from the command line through parse_args().
+
+ Returns:
+ True if successful.
+ """
+ if 'android' in opts.target_platform:
+ CopyAndSaveOriginalEnvironmentVars()
+ return SetupAndroidBuildEnvironment(opts)
+ elif opts.target_platform == 'cros':
+ return bisect_utils.SetupCrosRepo()
+ return True
+
+
+def BuildWithMake(threads, targets, build_type='Release'):
+ """Runs a make command with the given targets.
+
+ Args:
+ threads: The number of threads to use. None means unspecified/unlimited.
+ targets: List of make targets.
+ build_type: Release or Debug.
+
+ Returns:
+ True if the command had a 0 exit code, False otherwise.
+ """
+ cmd = ['make', 'BUILDTYPE=%s' % build_type]
+ if threads:
+ cmd.append('-j%d' % threads)
+ cmd += targets
+ return_code = bisect_utils.RunProcess(cmd)
+ return not return_code
+
+
+def BuildWithNinja(threads, targets, build_type='Release'):
+ """Runs a ninja command with the given targets."""
+ cmd = ['ninja', '-C', os.path.join('out', build_type)]
+ if threads:
+ cmd.append('-j%d' % threads)
+ cmd += targets
+ return_code = bisect_utils.RunProcess(cmd)
+ return not return_code
+
+
+def BuildWithVisualStudio(targets, build_type='Release'):
+ """Runs a command to build the given targets with Visual Studio."""
+ path_to_devenv = os.path.abspath(
+ os.path.join(os.environ['VS100COMNTOOLS'], '..', 'IDE', 'devenv.com'))
+ path_to_sln = os.path.join(os.getcwd(), 'chrome', 'chrome.sln')
+ cmd = [path_to_devenv, '/build', build_type, path_to_sln]
+ for t in targets:
+ cmd.extend(['/Project', t])
+ return_code = bisect_utils.RunProcess(cmd)
+ return not return_code
+
+
+def CopyAndSaveOriginalEnvironmentVars():
+ """Makes a copy of the current environment variables.
+
+ Before making a copy of the environment variables and setting a global
+ variable, this function unsets a certain set of environment variables.
+ """
+ # TODO: Waiting on crbug.com/255689, will remove this after.
+ vars_to_remove = [
+ 'CHROME_SRC',
+ 'CHROMIUM_GYP_FILE',
+ 'GYP_CROSSCOMPILE',
+ 'GYP_DEFINES',
+ 'GYP_GENERATORS',
+ 'GYP_GENERATOR_FLAGS',
+ 'OBJCOPY',
+ ]
+ for key in os.environ:
+ if 'ANDROID' in key:
+ vars_to_remove.append(key)
+ for key in vars_to_remove:
+ if os.environ.has_key(key):
+ del os.environ[key]
+
+ global ORIGINAL_ENV
+ ORIGINAL_ENV = os.environ.copy()
+
+
+def SetupAndroidBuildEnvironment(opts, path_to_src=None):
+ """Sets up the android build environment.
+
+ Args:
+ opts: The options parsed from the command line through parse_args().
+ path_to_src: Path to the src checkout.
+
+ Returns:
+ True if successful.
+ """
+ # Revert the environment variables back to default before setting them up
+ # with envsetup.sh.
+ env_vars = os.environ.copy()
+ for k, _ in env_vars.iteritems():
+ del os.environ[k]
+ for k, v in ORIGINAL_ENV.iteritems():
+ os.environ[k] = v
+
+ envsetup_path = os.path.join('build', 'android', 'envsetup.sh')
+ proc = subprocess.Popen(['bash', '-c', 'source %s && env' % envsetup_path],
+ stdout=subprocess.PIPE,
+ stderr=subprocess.PIPE,
+ cwd=path_to_src)
+ out, _ = proc.communicate()
+
+ for line in out.splitlines():
+ k, _, v = line.partition('=')
+ os.environ[k] = v
+
+ # envsetup.sh no longer sets OS=android in GYP_DEFINES environment variable.
+ # (See http://crrev.com/170273005). So, we set this variable explicitly here
+ # in order to build Chrome on Android.
+ if 'GYP_DEFINES' not in os.environ:
+ os.environ['GYP_DEFINES'] = 'OS=android'
+ else:
+ os.environ['GYP_DEFINES'] += ' OS=android'
+
+ if opts.use_goma:
+ os.environ['GYP_DEFINES'] += ' use_goma=1'
+ return not proc.returncode