OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2012 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 'variables': { |
| 7 'midl_out_dir': '<(SHARED_INTERMEDIATE_DIR)', |
| 8 }, |
| 9 'targets': [ |
| 10 { |
| 11 'target_name': 'idl_test', |
| 12 'type': 'executable', |
| 13 'sources': [ |
| 14 'history_indexer.idl', |
| 15 '<(midl_out_dir)/history_indexer.h', |
| 16 '<(midl_out_dir)/history_indexer_i.c', |
| 17 'history_indexer_user.cc', |
| 18 ], |
| 19 'include_dirs': [ |
| 20 '<(midl_out_dir)', |
| 21 ], |
| 22 'msvs_settings': { |
| 23 'VCMIDLTool': { |
| 24 'OutputDirectory': '<(midl_out_dir)', |
| 25 'HeaderFileName': '<(RULE_INPUT_ROOT).h', |
| 26 }, |
| 27 }, |
| 28 }, |
| 29 ], |
| 30 } |
OLD | NEW |