Skip to content

Commit

Permalink
Backed out changeset acde419e016e (bug 1475573) for breaking Android …
Browse files Browse the repository at this point in the history
…builds
  • Loading branch information
nerli1 committed Aug 4, 2018
1 parent 6a3d862 commit 0cacb5f
Show file tree
Hide file tree
Showing 7 changed files with 1 addition and 88 deletions.
9 changes: 0 additions & 9 deletions build/gecko_templates.mozbuild
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,6 @@ def GeckoBinary(linkage='dependent', mozglue=None):
elif linkage != None:
error('`linkage` must be "dependent", "standalone" or None')

if CONFIG['LIBFUZZER']:
assert mozglue is not None, 'libfuzzer depends on "mozglue"'
USE_LIBS += [
'fuzzer'
]
LOCAL_INCLUDES += [
'/tools/fuzzing/libfuzzer'
]

if mozglue:
LDFLAGS += CONFIG['MOZ_GLUE_WRAP_LDFLAGS']
if mozglue == 'program':
Expand Down
9 changes: 0 additions & 9 deletions ipc/app/moz.build
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,6 @@ LOCAL_INCLUDES += [
'/xpcom/base',
]

if CONFIG['LIBFUZZER']:
USE_LIBS += [
'fuzzer',
'mozglue'
]
LOCAL_INCLUDES += [
'/tools/fuzzing/libfuzzer',
]

# DELAYLOAD_DLLS in this block ensures that the DLL blocklist is functional
if CONFIG['OS_ARCH'] == 'WINNT':
DELAYLOAD_DLLS += [
Expand Down
13 changes: 0 additions & 13 deletions mobile/android/config/mozconfigs/android-x86/debug-fuzzing

This file was deleted.

49 changes: 0 additions & 49 deletions taskcluster/ci/build/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,55 +154,6 @@ android-x86/opt:
- linux64-sccache
- linux64-node

android-x86-fuzzing/debug:
description: "Android x86 Fuzzing Debug"
index:
product: mobile
job-name: android-x86-fuzzing-debug
treeherder:
platform: android-4-2-x86/debug
symbol: Bf
worker-type: aws-provisioner-v1/gecko-{level}-b-android
worker:
docker-image: {in-tree: android-build}
max-run-time: 7200
env:
GRADLE_USER_HOME: "/builds/worker/workspace/build/src/mobile/android/gradle/dotgradle-offline"
TOOLTOOL_MANIFEST: "mobile/android/config/tooltool-manifests/android-x86/releng.manifest"
artifacts:
- name: public/android/R
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/app/R
type: directory
- name: public/android/maven
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/
type: directory
- name: public/build/geckoview-androidTest.apk
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/outputs/apk/androidTest/officialWithGeckoBinariesNoMinApi/debug/geckoview-official-withGeckoBinaries-noMinApi-debug-androidTest.apk
type: file
- name: public/build/geckoview_example.apk
path: /builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/officialWithGeckoBinariesNoMinApi/debug/geckoview_example-official-withGeckoBinaries-noMinApi-debug.apk
type: file
- name: public/build
path: /builds/worker/artifacts/
type: directory
run:
using: mozharness
actions: [get-secrets build multi-l10n update]
config:
- builds/releng_base_android_64_builds.py
script: "mozharness/scripts/fx_desktop_build.py"
secrets: true
custom-build-variant-cfg: x86-fuzzing-debug
tooltool-downloads: internal
toolchains:
- android-gradle-dependencies
- android-ndk-linux
- android-sdk-linux
- linux64-clang
- linux64-rust-android
- linux64-rust-size
- linux64-sccache

android-x86-nightly/opt:
description: "Android 4.2 x86 Nightly"
attributes:
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,6 @@ class BuildOptionParser(object):
'rusttests-debug': 'builds/releng_sub_%s_configs/%s_rusttests_debug.py',
'x86': 'builds/releng_sub_%s_configs/%s_x86.py',
'x86-artifact': 'builds/releng_sub_%s_configs/%s_x86_artifact.py',
'x86-fuzzing-debug': 'builds/releng_sub_%s_configs/%s_x86_fuzzing_debug.py',
'api-16-partner-sample1': 'builds/releng_sub_%s_configs/%s_api_16_partner_sample1.py',
'aarch64': 'builds/releng_sub_%s_configs/%s_aarch64.py',
'android-test': 'builds/releng_sub_%s_configs/%s_test.py',
Expand Down
2 changes: 1 addition & 1 deletion tools/fuzzing/faulty/Faulty.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ Faulty::MaybeCollectAndClosePipe(int aPipe, unsigned int aProbability)
}

if (aPipe > -1) {
FAULTY_LOG("Collecting pipe %d to bucket of pipes (count: %zu)",
FAULTY_LOG("Collecting pipe %d to bucket of pipes (count: %ld)",
aPipe, mFds.size());
mFds.insert(aPipe);
}
Expand Down

0 comments on commit 0cacb5f

Please sign in to comment.