blob: ea1452ff048516664ad184978c6496bcd8cb9670 [file] [log] [blame]
# Copyright 2013 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,
},
'targets': [
{
'target_name': 'genfilter_lib',
'type': 'static_library',
'sources': [
'filter_compiler.cc',
'filter_compiler.h',
'genfilter_app.cc',
'genfilter_app.h',
],
'dependencies': [
'<(src)/base/base.gyp:base',
'<(src)/syzygy/pe/pe.gyp:pe_lib',
],
},
{
'target_name': 'genfilter',
'type': 'executable',
'sources': [
'genfilter_main.cc',
'genfilter.rc',
],
'dependencies': [
'genfilter_lib',
],
},
{
'target_name': 'genfilter_unittests',
'type': 'executable',
'sources': [
'filter_compiler_unittest.cc',
'genfilter_app_unittest.cc',
'genfilter_unittests_main.cc',
],
'dependencies': [
'genfilter_lib',
'<(src)/base/base.gyp:base',
'<(src)/testing/gmock.gyp:gmock',
'<(src)/testing/gtest.gyp:gtest',
'<(src)/syzygy/core/core.gyp:core_unittest_utils',
'<(src)/syzygy/pe/pe.gyp:pe_unittest_utils',
'<(src)/syzygy/pe/pe.gyp:test_dll',
],
},
],
}