| 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 'variables': { | 6 'variables': { |
| 7 'openmax_type%': 'stub', | 7 'openmax_type%': 'stub', |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 'direct_dependent_settings': { | 25 'direct_dependent_settings': { |
| 26 'include_dirs': [ | 26 'include_dirs': [ |
| 27 'il', | 27 'il', |
| 28 ], | 28 ], |
| 29 'defines': [ | 29 'defines': [ |
| 30 '__OMX_EXPORTS', | 30 '__OMX_EXPORTS', |
| 31 ], | 31 ], |
| 32 }, | 32 }, |
| 33 'conditions': [ | 33 'conditions': [ |
| 34 ['OS!="linux"', { | 34 ['OS!="linux"', { |
| 35 'type': '<(library)', | 35 'type': 'static_library', |
| 36 'dependencies': [ | 36 'dependencies': [ |
| 37 '../../base/base.gyp:base', | 37 '../../base/base.gyp:base', |
| 38 ], | 38 ], |
| 39 'sources': [ | 39 'sources': [ |
| 40 'omx_stub.cc', | 40 'omx_stub.cc', |
| 41 ], | 41 ], |
| 42 'include_dirs': [ | 42 'include_dirs': [ |
| 43 'il', | 43 'il', |
| 44 ], | 44 ], |
| 45 'defines': [ | 45 'defines': [ |
| 46 '__OMX_EXPORTS', | 46 '__OMX_EXPORTS', |
| 47 ], | 47 ], |
| 48 }], | 48 }], |
| 49 ['OS=="linux"', { | 49 ['OS=="linux"', { |
| 50 'variables': { | 50 'variables': { |
| 51 'generate_stubs_script': '../../tools/generate_stubs/generate_stubs.
py', | 51 'generate_stubs_script': '../../tools/generate_stubs/generate_stubs.
py', |
| 52 'sig_files': [ | 52 'sig_files': [ |
| 53 'il.sigs', | 53 'il.sigs', |
| 54 ], | 54 ], |
| 55 'extra_header': 'il_stub_headers.fragment', | 55 'extra_header': 'il_stub_headers.fragment', |
| 56 'outfile_type': 'posix_stubs', | 56 'outfile_type': 'posix_stubs', |
| 57 'stubs_filename_root': 'il_stubs', | 57 'stubs_filename_root': 'il_stubs', |
| 58 'project_path': 'third_party/openmax', | 58 'project_path': 'third_party/openmax', |
| 59 'intermediate_dir': '<(INTERMEDIATE_DIR)', | 59 'intermediate_dir': '<(INTERMEDIATE_DIR)', |
| 60 'output_root': '<(SHARED_INTERMEDIATE_DIR)/openmax', | 60 'output_root': '<(SHARED_INTERMEDIATE_DIR)/openmax', |
| 61 }, | 61 }, |
| 62 'type': '<(library)', | 62 'type': 'static_library', |
| 63 'dependencies': [ | 63 'dependencies': [ |
| 64 '../../base/base.gyp:base', | 64 '../../base/base.gyp:base', |
| 65 ], | 65 ], |
| 66 'defines': [ | 66 'defines': [ |
| 67 '__OMX_EXPORTS', | 67 '__OMX_EXPORTS', |
| 68 ], | 68 ], |
| 69 'include_dirs': [ | 69 'include_dirs': [ |
| 70 'il', | 70 'il', |
| 71 '<(output_root)', | 71 '<(output_root)', |
| 72 '../..', # The chromium 'src' directory. | 72 '../..', # The chromium 'src' directory. |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 ], | 108 ], |
| 109 }, | 109 }, |
| 110 ], | 110 ], |
| 111 } | 111 } |
| 112 | 112 |
| 113 # Local Variables: | 113 # Local Variables: |
| 114 # tab-width:2 | 114 # tab-width:2 |
| 115 # indent-tabs-mode:nil | 115 # indent-tabs-mode:nil |
| 116 # End: | 116 # End: |
| 117 # vim: set expandtab tabstop=2 shiftwidth=2: | 117 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |