mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
ef0f1abd3b
Warnings fixed include the following. - Several cases where macros (|LOG| and |ALOGE|) were redefined. I just did a simple #undef to fix these. - In GonkMemoryPressureMonitoring.cpp, "the address of NuwaMarkCurrentThread will never be NULL". - In OrientationObserver.cpp, several signed/unsigned comparison warnings. - Several warnings about variables that are unused or set but not used: in InputDispatcher.cpp, InputReader.cpp. Also in SpriteController, where several loops were all but empty if HAVE_ANDROID_OS is undefined; for these I moved the HAVE_ANDROID_OS check outside the loop. The patch also disallows the introduction of new warnings by removing the ALLOW_COMPILER_WARNINGS flag.
106 lines
2.6 KiB
Python
106 lines
2.6 KiB
Python
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
# vim: set filetype=python:
|
|
# Copyright 2013 Mozilla Foundation and Mozilla contributors
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
EXPORTS += [
|
|
'GeckoTouchDispatcher.h',
|
|
'GonkPermission.h',
|
|
'OrientationObserver.h',
|
|
]
|
|
|
|
DIRS += ['libdisplay', 'nativewindow']
|
|
|
|
# libui files
|
|
SOURCES += ['libui/' + src for src in [
|
|
'EventHub.cpp',
|
|
'Input.cpp',
|
|
'InputApplication.cpp',
|
|
'InputDevice.cpp',
|
|
'InputDispatcher.cpp',
|
|
'InputListener.cpp',
|
|
'InputReader.cpp',
|
|
'InputTransport.cpp',
|
|
'InputWindow.cpp',
|
|
'Keyboard.cpp',
|
|
'KeyCharacterMap.cpp',
|
|
'KeyLayoutMap.cpp',
|
|
'PointerController.cpp',
|
|
'sha1.c',
|
|
'SpriteController.cpp',
|
|
'Tokenizer.cpp',
|
|
'VelocityControl.cpp',
|
|
'VelocityTracker.cpp',
|
|
'VirtualKeyMap.cpp',
|
|
]]
|
|
|
|
# HwcHAL files
|
|
if CONFIG['ANDROID_VERSION'] >= '17':
|
|
SOURCES += [
|
|
'hwchal/HwcHAL.cpp',
|
|
]
|
|
elif CONFIG['ANDROID_VERSION'] == '15':
|
|
SOURCES += [
|
|
'hwchal/HwcICS.cpp',
|
|
]
|
|
|
|
SOURCES += [
|
|
'GeckoTouchDispatcher.cpp',
|
|
'GfxInfo.cpp',
|
|
'GonkClipboardData.cpp',
|
|
'GonkMemoryPressureMonitoring.cpp',
|
|
'GonkPermission.cpp',
|
|
'HwcComposer2D.cpp',
|
|
'HwcUtils.cpp',
|
|
'nsAppShell.cpp',
|
|
'nsClipboard.cpp',
|
|
'nsIdleServiceGonk.cpp',
|
|
'nsLookAndFeel.cpp',
|
|
'nsScreenManagerGonk.cpp',
|
|
'nsWidgetFactory.cpp',
|
|
'nsWindow.cpp',
|
|
'OrientationObserver.cpp',
|
|
'ProcessOrientation.cpp',
|
|
'WidgetTraceEvent.cpp'
|
|
]
|
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
FINAL_LIBRARY = 'xul'
|
|
|
|
LOCAL_INCLUDES += [
|
|
'/dom/system/android',
|
|
'/gfx/skia/skia/include/config',
|
|
'/gfx/skia/skia/include/core',
|
|
'/image',
|
|
'/widget',
|
|
]
|
|
|
|
DEFINES['HAVE_OFF64_T'] = True
|
|
DEFINES['SK_BUILD_FOR_ANDROID_NDK'] = True
|
|
|
|
if CONFIG['ANDROID_VERSION'] != '15':
|
|
DEFINES['HAVE_POSIX_CLOCKS'] = True
|
|
|
|
if CONFIG['MOZ_OMX_DECODER']:
|
|
DEFINES['MOZ_OMX_DECODER'] = True
|
|
|
|
CXXFLAGS += [
|
|
'-I%s/%s' % (CONFIG['ANDROID_SOURCE'], d) for d in [
|
|
'hardware/libhardware/include',
|
|
'hardware/libhardware_legacy/include',
|
|
'frameworks/native/opengl/include',
|
|
]
|
|
]
|