Home | History | Annotate | Download | only in idl-includedirs
      1 # 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 }
     27