| 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': [ | 16 'conditions': [ |
| 17 ['renderer == "cairo"', | 17 ['renderer == "cairo"', |
| 18 { | 18 { |
| 19 'idl_files': [ | 19 'idl_files': [ |
| 20 'layer.idl', | 20 'layer.idl', |
| 21 'pattern.idl', |
| 21 ], | 22 ], |
| 22 }, | 23 }, |
| 23 ], | 24 ], |
| 24 ], | 25 ], |
| 25 }, | 26 }, |
| 26 'target_defaults': { | 27 'target_defaults': { |
| 27 'include_dirs': [ | 28 'include_dirs': [ |
| 28 '../..', | 29 '../..', |
| 29 '../../..', | 30 '../../..', |
| 30 '../../../<(npapidir)/include', | 31 '../../../<(npapidir)/include', |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 ], | 117 ], |
| 117 }, | 118 }, |
| 118 ], | 119 ], |
| 119 } | 120 } |
| 120 | 121 |
| 121 # Local Variables: | 122 # Local Variables: |
| 122 # tab-width:2 | 123 # tab-width:2 |
| 123 # indent-tabs-mode:nil | 124 # indent-tabs-mode:nil |
| 124 # End: | 125 # End: |
| 125 # vim: set expandtab tabstop=2 shiftwidth=2: | 126 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |