607c805b87
The find_depot_tools.py is needed to workaround the import error we get from gyp_chromium when importing it in webrtc/build/gyp_webrtc (to avoid code duplication). gyp_chromium introduced a dependency on it in http://crrev.com/245412 but as we cannot sync all of Chrome's src/tools (it's quite big), we'll work around this by adding an empty find_depot_tools module. The removal of the Cygwin relates to http://crrev.com/248802 which is a step on the way to remove Cygwin in Chromium. We seem to already be able to remove it entirely for WebRTC though. Changes in the isolate framework required us to update our copies of the isolate.gypi files. BUG=none TEST=trybots passing on all platforms R=andrew@webrtc.org, fischman@webrtc.org Review URL: https://webrtc-codereview.appspot.com/8099004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@5512 4adac7df-926f-26a2-2b94-8c16560cd09d
147 lines
5.7 KiB
Python
147 lines
5.7 KiB
Python
#
|
|
# libjingle
|
|
# Copyright 2013, Google Inc.
|
|
#
|
|
# Redistribution and use in source and binary forms, with or without
|
|
# modification, are permitted provided that the following conditions are met:
|
|
#
|
|
# 1. Redistributions of source code must retain the above copyright notice,
|
|
# this list of conditions and the following disclaimer.
|
|
# 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
# this list of conditions and the following disclaimer in the documentation
|
|
# and/or other materials provided with the distribution.
|
|
# 3. The name of the author may not be used to endorse or promote products
|
|
# derived from this software without specific prior written permission.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
#
|
|
|
|
# Copied from Chromium's src/build/isolate.gypi
|
|
#
|
|
# It was necessary to copy this file to libjingle , because the path to
|
|
# build/common.gypi is different for the standalone and Chromium builds. Gyp
|
|
# doesn't permit conditional inclusion or variable expansion in include paths.
|
|
# http://code.google.com/p/gyp/wiki/InputFormatReference#Including_Other_Files
|
|
#
|
|
# Local modifications:
|
|
# * Removed include of '../chrome/version.gypi'.
|
|
# * Removal passing of version_full variable created in version.gypi:
|
|
# '--extra-variable', 'version_full=<(version_full)',
|
|
|
|
# This file is meant to be included into a target to provide a rule
|
|
# to "build" .isolate files into a .isolated file.
|
|
#
|
|
# To use this, create a gyp target with the following form:
|
|
# 'conditions': [
|
|
# ['test_isolation_mode != "noop"', {
|
|
# 'targets': [
|
|
# {
|
|
# 'target_name': 'foo_test_run',
|
|
# 'type': 'none',
|
|
# 'dependencies': [
|
|
# 'foo_test',
|
|
# ],
|
|
# 'includes': [
|
|
# '../build/isolate.gypi',
|
|
# 'foo_test.isolate',
|
|
# ],
|
|
# 'sources': [
|
|
# 'foo_test.isolate',
|
|
# ],
|
|
# },
|
|
# ],
|
|
# }],
|
|
# ],
|
|
#
|
|
# Note: foo_test.isolate is included and a source file. It is an inherent
|
|
# property of the .isolate format. This permits to define GYP variables but is
|
|
# a stricter format than GYP so isolate.py can read it.
|
|
#
|
|
# The generated .isolated file will be:
|
|
# <(PRODUCT_DIR)/foo_test.isolated
|
|
#
|
|
# See http://dev.chromium.org/developers/testing/isolated-testing/for-swes
|
|
# for more information.
|
|
|
|
{
|
|
'rules': [
|
|
{
|
|
'rule_name': 'isolate',
|
|
'extension': 'isolate',
|
|
'inputs': [
|
|
# Files that are known to be involved in this step.
|
|
'<(DEPTH)/tools/swarming_client/isolate.py',
|
|
'<(DEPTH)/tools/swarming_client/run_isolated.py',
|
|
|
|
# Disable file tracking by the build driver for now. This means the
|
|
# project must have the proper build-time dependency for their runtime
|
|
# dependency. This improves the runtime of the build driver since it
|
|
# doesn't have to stat() all these files.
|
|
#
|
|
# More importantly, it means that even if a isolate_dependency_tracked
|
|
# file is missing, for example if a file was deleted and the .isolate
|
|
# file was not updated, that won't break the build, especially in the
|
|
# case where foo_tests_run is not built! This should be reenabled once
|
|
# the switch-over to running tests on Swarm is completed.
|
|
#'<@(isolate_dependency_tracked)',
|
|
],
|
|
'outputs': [
|
|
'<(PRODUCT_DIR)/<(RULE_INPUT_ROOT).isolated',
|
|
],
|
|
'action': [
|
|
'python',
|
|
'<(DEPTH)/tools/swarming_client/isolate.py',
|
|
'<(test_isolation_mode)',
|
|
'--result', '<@(_outputs)',
|
|
'--isolate', '<(RULE_INPUT_PATH)',
|
|
|
|
# Variables should use the -V FOO=<(FOO) form so frequent values,
|
|
# like '0' or '1', aren't stripped out by GYP. Run 'isolate.py help' for
|
|
# more details.
|
|
#
|
|
# This list needs to be kept in sync with the cmd line options
|
|
# in src/build/android/pylib/gtest/setup.py.
|
|
|
|
# Path variables are used to replace file paths when loading a .isolate
|
|
# file
|
|
'--path-variable', 'PRODUCT_DIR', '<(PRODUCT_DIR) ',
|
|
|
|
'--config-variable', 'OS=<(OS)',
|
|
'--config-variable', 'chromeos=<(chromeos)',
|
|
'--config-variable', 'component=<(component)',
|
|
# TODO(kbr): move this to chrome_tests.gypi:gles2_conform_tests_run
|
|
# once support for user-defined config variables is added.
|
|
'--config-variable',
|
|
'internal_gles2_conform_tests=<(internal_gles2_conform_tests)',
|
|
'--config-variable', 'icu_use_data_file_flag=<(icu_use_data_file_flag)',
|
|
'--config-variable', 'use_openssl=<(use_openssl)',
|
|
],
|
|
'conditions': [
|
|
# Note: When gyp merges lists, it appends them to the old value.
|
|
['OS=="mac"', {
|
|
# <(mac_product_name) can contain a space, so don't use FOO=<(FOO)
|
|
# form.
|
|
'action': [
|
|
'--extra-variable', 'mac_product_name', '<(mac_product_name)',
|
|
],
|
|
}],
|
|
["test_isolation_outdir!=''", {
|
|
'action': [ '--isolate-server', '<(test_isolation_outdir)' ],
|
|
}],
|
|
['test_isolation_fail_on_missing == 0', {
|
|
'action': ['--ignore_broken_items'],
|
|
}],
|
|
],
|
|
},
|
|
],
|
|
}
|