Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(38)

Side by Side Diff: test/win/idl-rules/basic-idl.gyp

Issue 9990006: ninja windows: Support magic idl build rules (Closed) Base URL: https://gyp.googlecode.com/svn/trunk
Patch Set: rename helper Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698