mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
b68f6489dc
--HG-- extra : source : 8393f458463ff465c0862209a7bef284e5ce6b48
60 lines
1.6 KiB
Python
60 lines
1.6 KiB
Python
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
# 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/.
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk':
|
|
MOCHITEST_MANIFESTS += ['test/mochitest.ini']
|
|
|
|
EXPORTS += [
|
|
'CameraCommon.h',
|
|
'CameraPreferences.h',
|
|
'DOMCameraManager.h',
|
|
]
|
|
|
|
UNIFIED_SOURCES += [
|
|
'CameraControlImpl.cpp',
|
|
'CameraPreferences.cpp',
|
|
'CameraPreviewMediaStream.cpp',
|
|
'DOMCameraCapabilities.cpp',
|
|
'DOMCameraControl.cpp',
|
|
'DOMCameraControlListener.cpp',
|
|
'DOMCameraDetectedFace.cpp',
|
|
'DOMCameraManager.cpp',
|
|
]
|
|
|
|
if CONFIG['MOZ_B2G_CAMERA']:
|
|
UNIFIED_SOURCES += [
|
|
'GonkCameraControl.cpp',
|
|
'GonkCameraHwMgr.cpp',
|
|
'GonkCameraManager.cpp',
|
|
'GonkCameraParameters.cpp',
|
|
'GonkCameraSource.cpp',
|
|
'GonkRecorder.cpp',
|
|
'GonkRecorderProfiles.cpp',
|
|
'TestGonkCameraControl.cpp',
|
|
'TestGonkCameraHardware.cpp',
|
|
]
|
|
else:
|
|
UNIFIED_SOURCES += [
|
|
'FallbackCameraControl.cpp',
|
|
'FallbackCameraManager.cpp',
|
|
]
|
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
LOCAL_INCLUDES += [
|
|
'../base',
|
|
]
|
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
# Suppress some GCC warnings being treated as errors:
|
|
# - about attributes on forward declarations for types that are already
|
|
# defined, which complains about an important MOZ_EXPORT for android::AString
|
|
if CONFIG['GNU_CC']:
|
|
CXXFLAGS += ['-Wno-error=attributes']
|
|
|
|
FINAL_LIBRARY = 'xul'
|