2013-04-01 18:36:59 +00:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 20:47:22 +00:00
|
|
|
# vim: set filetype=python:
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2013-10-24 23:23:05 +00:00
|
|
|
SOURCES += [
|
2013-04-23 21:54:15 +00:00
|
|
|
'OmxPluginHoneycomb.cpp',
|
|
|
|
]
|
|
|
|
|
2014-09-04 00:04:45 +00:00
|
|
|
SharedLibrary('omxpluginhc')
|
2013-12-31 09:06:11 +00:00
|
|
|
|
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'../include/gb',
|
|
|
|
'../include/gb/media/stagefright/openmax',
|
|
|
|
]
|
|
|
|
|
2014-07-23 04:30:52 +00:00
|
|
|
USE_LIBS += [
|
|
|
|
'/media/omx-plugin/lib/gb/libutils/utils',
|
|
|
|
'/media/omx-plugin/lib/hc/libstagefright/stagefright',
|
|
|
|
]
|
|
|
|
|
2014-03-05 00:39:06 +00:00
|
|
|
# Don't use STL wrappers; this isn't Gecko code
|
|
|
|
DISABLE_STL_WRAPPING = True
|
2014-05-06 05:28:04 +00:00
|
|
|
NO_VISIBILITY_FLAGS = True
|
2014-03-28 03:34:49 +00:00
|
|
|
|
|
|
|
# Suppress warnings in third-party code.
|
|
|
|
CXXFLAGS += ['-Wno-multichar']
|