OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'variables': { | 9 'variables': { |
10 'chromium_code': 0, | 10 'chromium_code': 0, |
11 'idl_out_path': '<(SHARED_INTERMEDIATE_DIR)/idl_glue', | 11 'idl_out_path': '<(SHARED_INTERMEDIATE_DIR)/idl_glue', |
12 'static_glue_dir': '../../../<(nixysadir)/static_glue/npapi', | 12 'static_glue_dir': '../../../<(nixysadir)/static_glue/npapi', |
13 'idl_files': [ | 13 'idl_files': [ |
14 '<!@(python get_idl_files.py)', | 14 '<!@(python get_idl_files.py)', |
15 ], | 15 ], |
| 16 'conditions': [ |
| 17 ['renderer == "cairo"', |
| 18 { |
| 19 'idl_files': [ |
| 20 'image_2d.idl', |
| 21 ], |
| 22 }, |
| 23 ], |
| 24 ], |
16 }, | 25 }, |
17 'target_defaults': { | 26 'target_defaults': { |
18 'include_dirs': [ | 27 'include_dirs': [ |
19 '../..', | 28 '../..', |
20 '../../..', | 29 '../../..', |
21 '../../../<(npapidir)/include', | 30 '../../../<(npapidir)/include', |
22 '../../../<(zlibdir)', | 31 '../../../<(zlibdir)', |
23 '../../../skia/config', | 32 '../../../skia/config', |
24 '../../plugin/cross', | 33 '../../plugin/cross', |
25 '<(static_glue_dir)', | 34 '<(static_glue_dir)', |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 ], | 116 ], |
108 }, | 117 }, |
109 ], | 118 ], |
110 } | 119 } |
111 | 120 |
112 # Local Variables: | 121 # Local Variables: |
113 # tab-width:2 | 122 # tab-width:2 |
114 # indent-tabs-mode:nil | 123 # indent-tabs-mode:nil |
115 # End: | 124 # End: |
116 # vim: set expandtab tabstop=2 shiftwidth=2: | 125 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |