blob: 7a7b48ed7f7fc3de29269361622933d55eff12c2 [file] [log] [blame]
# Copyright 2012 Google Inc. All Rights Reserved.
#
# 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.
{
'variables': {
'chromium_code': 1,
'py_etw': '<(src)/third_party/sawbuck/py/etw',
},
'targets': [
{
# Temporary build configuration for the ETW module.
# TODO(siggi): Move ETW and ETW-Db into a new top-level directory.
'target_name': 'etw',
'type': 'none',
'variables': {
'etw_sources': [
'<(py_etw)/etw/__init__.py',
'<(py_etw)/etw/consumer.py',
'<(py_etw)/etw/controller.py',
'<(py_etw)/etw/evntcons.py',
'<(py_etw)/etw/evntrace.py',
'<(py_etw)/etw/guiddef.py',
'<(py_etw)/etw/provider.py',
'<(py_etw)/etw/util.py',
'<(py_etw)/etw/descriptors/__init__.py',
'<(py_etw)/etw/descriptors/binary_buffer.py',
'<(py_etw)/etw/descriptors/event.py',
'<(py_etw)/etw/descriptors/field.py',
'<(py_etw)/etw/descriptors/fileio.py',
'<(py_etw)/etw/descriptors/image.py',
'<(py_etw)/etw/descriptors/pagefault.py',
'<(py_etw)/etw/descriptors/pagefault_xp.py',
'<(py_etw)/etw/descriptors/process.py',
'<(py_etw)/etw/descriptors/registry.py',
'<(py_etw)/etw/descriptors/thread.py',
],
'setup_file': '<(py_etw)/setup.py',
'success_file': '<(PRODUCT_DIR)/ETW-egg-success.txt',
'script_file': '<(src)/syzygy/build/build_egg.py',
},
'sources': [
'<(script_file)',
'<(setup_file)',
'<@(etw_sources)',
],
'dependencies': [
'<(src)/syzygy/py/py.gyp:virtualenv',
],
'actions': [
{
'action_name': 'build_etw',
'msvs_cygwin_shell': 0,
'inputs': [
'<(script_file)',
'<(setup_file)',
'<@(etw_sources)',
],
'outputs': [
'<(success_file)',
],
'action': [
'<(PRODUCT_DIR)/py/scripts/python',
'<(script_file)',
'--setup-file', '<(setup_file)',
'--build-dir', '<(PRODUCT_DIR)/temp/etw',
'--success-file', '<(success_file)',
],
},
],
},
{
'target_name': 'etw_db',
'type': 'none',
'variables': {
'etw_db_sources': [
'etw_db/file.py',
'etw_db/module.py',
'etw_db/process.py',
'etw_db/__init__.py',
],
'setup_file': 'setup.py',
'success_file': '<(PRODUCT_DIR)/ETW-Db-egg-success.txt',
'script_file': '<(src)/syzygy/build/build_egg.py',
},
'sources': [
'<@(etw_db_sources)',
],
'dependencies': [
'etw',
'<(src)/syzygy/py/py.gyp:virtualenv',
],
'actions': [
{
'action_name': 'build_etw_db',
'msvs_cygwin_shell': 0,
'inputs': [
'<(script_file)',
'<(setup_file)',
'<@(etw_db_sources)',
],
'outputs': [
'<(success_file)',
],
'action': [
'<(PRODUCT_DIR)/py/scripts/python',
'<(script_file)',
'--setup-file', '<(setup_file)',
'--build-dir', '<(PRODUCT_DIR)/temp/etw_db',
'--success-file', '<(success_file)',
],
},
],
},
],
}