widget/gonk/nativewindow/moz.build

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

michael@0 1 # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
michael@0 2 # vim: set filetype=python:
michael@0 3 # Copyright 2013 Mozilla Foundation and Mozilla contributors
michael@0 4 #
michael@0 5 # Licensed under the Apache License, Version 2.0 (the "License");
michael@0 6 # you may not use this file except in compliance with the License.
michael@0 7 # You may obtain a copy of the License at
michael@0 8 #
michael@0 9 # http://www.apache.org/licenses/LICENSE-2.0
michael@0 10 #
michael@0 11 # Unless required by applicable law or agreed to in writing, software
michael@0 12 # distributed under the License is distributed on an "AS IS" BASIS,
michael@0 13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
michael@0 14 # See the License for the specific language governing permissions and
michael@0 15 # limitations under the License.
michael@0 16
michael@0 17 EXPORTS += [
michael@0 18 'GonkBufferQueue.h',
michael@0 19 'GonkNativeWindow.h',
michael@0 20 'GonkNativeWindowClient.h',
michael@0 21 ]
michael@0 22
michael@0 23 if CONFIG['ANDROID_VERSION'] == '19':
michael@0 24 EXPORTS += [
michael@0 25 'GonkBufferQueueKK.h',
michael@0 26 'GonkConsumerBaseKK.h',
michael@0 27 'GonkNativeWindowClientKK.h',
michael@0 28 'GonkNativeWindowKK.h',
michael@0 29 'IGonkGraphicBufferConsumer.h',
michael@0 30 ]
michael@0 31 elif CONFIG['ANDROID_VERSION'] in ('17', '18'):
michael@0 32 EXPORTS += [
michael@0 33 'GonkBufferQueueJB.h',
michael@0 34 'GonkConsumerBaseJB.h',
michael@0 35 'GonkNativeWindowClientJB.h',
michael@0 36 'GonkNativeWindowJB.h',
michael@0 37 ]
michael@0 38 elif CONFIG['ANDROID_VERSION'] == '15':
michael@0 39 EXPORTS += [
michael@0 40 'GonkNativeWindowClientICS.h',
michael@0 41 'GonkNativeWindowICS.h',
michael@0 42 ]
michael@0 43
michael@0 44 if CONFIG['MOZ_B2G_CAMERA'] or CONFIG['MOZ_OMX_DECODER'] or CONFIG['MOZ_WEBRTC']:
michael@0 45 if CONFIG['ANDROID_VERSION'] == '19':
michael@0 46 SOURCES += [
michael@0 47 'GonkBufferQueueKK.cpp',
michael@0 48 'GonkConsumerBaseKK.cpp',
michael@0 49 'GonkNativeWindowClientKK.cpp',
michael@0 50 'GonkNativeWindowKK.cpp',
michael@0 51 'IGonkGraphicBufferConsumer.cpp',
michael@0 52 ]
michael@0 53 elif CONFIG['ANDROID_VERSION'] in ('17', '18'):
michael@0 54 SOURCES += [
michael@0 55 'GonkBufferQueueJB.cpp',
michael@0 56 'GonkConsumerBaseJB.cpp',
michael@0 57 'GonkNativeWindowClientJB.cpp',
michael@0 58 'GonkNativeWindowJB.cpp',
michael@0 59 ]
michael@0 60 elif CONFIG['ANDROID_VERSION'] == '15':
michael@0 61 SOURCES += [
michael@0 62 'GonkNativeWindowClientICS.cpp',
michael@0 63 'GonkNativeWindowICS.cpp',
michael@0 64 ]
michael@0 65
michael@0 66 if CONFIG['MOZ_B2G_CAMERA'] or CONFIG['MOZ_OMX_DECODER']:
michael@0 67 if CONFIG['ANDROID_VERSION'] >= '18':
michael@0 68 SOURCES += [
michael@0 69 'FakeSurfaceComposer.cpp',
michael@0 70 ]
michael@0 71
michael@0 72 FAIL_ON_WARNINGS = True
michael@0 73
michael@0 74 include('/ipc/chromium/chromium-config.mozbuild')
michael@0 75
michael@0 76 FINAL_LIBRARY = 'xul'
michael@0 77
michael@0 78 DISABLE_STL_WRAPPING = True

mercurial