blob: fcec063a98a7c3a00df8eb53f40b142b310a4b83 [file] [log] [blame]
Ben Murdoch097c5b22016-05-18 11:27:45 +01001# Copyright (c) 2014 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5{
6 'targets': [
7 {
8 'target_name': 'test_midl_include_dirs',
9 'type': 'executable',
10 'sources': [
11 'hello.cc',
12 'subdir/foo.idl',
13 'subdir/bar.idl',
14 ],
15 'midl_include_dirs': [
16 'subdir',
17 ],
18 'msvs_settings': {
19 'VCMIDLTool': {
20 'OutputDirectory': '<(INTERMEDIATE_DIR)',
21 'DLLDataFileName': '$(InputName)_dlldata.h',
22 },
23 },
24 },
25 ],
26}