OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'includes': [ | 6 'includes': [ |
7 '../../build/common.gypi', | 7 '../../build/common.gypi', |
8 ], | 8 ], |
9 | 9 |
10 'target_defaults': { | 10 'target_defaults': { |
11 'include_dirs': [ | 11 'include_dirs': [ |
12 '.', | 12 '.', |
13 '<(INTERMEDIATE_DIR)', | 13 '<(INTERMEDIATE_DIR)', |
14 ], | 14 ], |
15 }, | 15 }, |
16 'targets': [ | 16 'targets': [ |
17 { | 17 { |
18 'target_name': 'isimpledom', | 18 'target_name': 'isimpledom', |
19 'type': 'static_library', | 19 'type': 'static_library', |
20 'sources': [ | 20 'sources': [ |
21 'ISimpleDOMDocument.idl', | 21 'ISimpleDOMDocument.idl', |
22 'ISimpleDOMNode.idl', | 22 'ISimpleDOMNode.idl', |
23 'ISimpleDOMText.idl', | 23 'ISimpleDOMText.idl', |
24 '<(INTERMEDIATE_DIR)/ISimpleDOMDocument.h', | 24 '<(INTERMEDIATE_DIR)/ISimpleDOMDocument.h', |
25 '<(INTERMEDIATE_DIR)/ISimpleDOMDocument_i.c', | 25 '<(INTERMEDIATE_DIR)/ISimpleDOMDocument_i.c', |
26 '<(INTERMEDIATE_DIR)/ISimpleDOMDocument_p.c', | |
27 '<(INTERMEDIATE_DIR)/ISimpleDOMNode.h', | 26 '<(INTERMEDIATE_DIR)/ISimpleDOMNode.h', |
28 '<(INTERMEDIATE_DIR)/ISimpleDOMNode_i.c', | 27 '<(INTERMEDIATE_DIR)/ISimpleDOMNode_i.c', |
29 '<(INTERMEDIATE_DIR)/ISimpleDOMNode_p.c', | |
30 '<(INTERMEDIATE_DIR)/ISimpleDOMText.h', | 28 '<(INTERMEDIATE_DIR)/ISimpleDOMText.h', |
31 '<(INTERMEDIATE_DIR)/ISimpleDOMText_i.c', | 29 '<(INTERMEDIATE_DIR)/ISimpleDOMText_i.c', |
32 '<(INTERMEDIATE_DIR)/ISimpleDOMText_p.c', | |
33 ], | 30 ], |
34 'hard_dependency': 1, | 31 'hard_dependency': 1, |
35 'direct_dependent_settings': { | 32 'direct_dependent_settings': { |
36 'include_dirs': [ | 33 'include_dirs': [ |
37 # Bit of a hack to work around the built in vstudio rule. | 34 # Bit of a hack to work around the built in vstudio rule. |
38 '<(INTERMEDIATE_DIR)/../isimpledom', | 35 '<(INTERMEDIATE_DIR)/../isimpledom', |
39 ], | 36 ], |
40 }, | 37 }, |
41 'msvs_settings': { | 38 'msvs_settings': { |
42 'VCMIDLTool': { | 39 'VCMIDLTool': { |
43 'GenerateTypeLibrary': 'false', | 40 'GenerateTypeLibrary': 'false', |
44 }, | 41 }, |
45 }, | 42 }, |
46 }, | 43 }, |
47 ], | 44 ], |
48 } | 45 } |
OLD | NEW |