https://github.com/mozilla/gecko-dev
Revision 03fe629b4fabb4d3e73ecbb5f7747b18bec6742a authored by Jim Mathies on 22 August 2016, 11:53:38 UTC, committed by Jim Mathies on 22 August 2016, 11:53:38 UTC
CLOSED TREE
MozReview-Commit-ID: 11qJbfim7Lm

--HG--
extra : source : d332de44654828b81e2ad13ec2d7fe54eb8d2de9
extra : amend_source : b4a4a60aab723d4e2221219d492fe28339d117fe
extra : intermediate-source : 16ac164512a3df63f339417ab148c539c4db19b1
1 parent 8653f7f
Raw File
Tip revision: 03fe629b4fabb4d3e73ecbb5f7747b18bec6742a authored by Jim Mathies on 22 August 2016, 11:53:38 UTC
Bug 1294650 - Install shim 'qipcap' dlls into the Firefox folder to circumvent dll injection by the 3rd party Websense product. r=aklotz a=sylvestre
Tip revision: 03fe629
.ycm_extra_conf.py
# 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/.

import imp
import os
from StringIO import StringIO
import shlex
import sys

old_bytecode = sys.dont_write_bytecode
sys.dont_write_bytecode = True

path = os.path.join(os.path.dirname(__file__), 'mach')

if not os.path.exists(path):
    path = os.path.join(os.path.dirname(__file__), 'config.status')
    config = imp.load_module('_buildconfig', open(path), path, ('', 'r', imp.PY_SOURCE))
    path = os.path.join(config.topsrcdir, 'mach')
mach_module = imp.load_module('_mach', open(path), path, ('', 'r', imp.PY_SOURCE))

sys.dont_write_bytecode = old_bytecode

def FlagsForFile(filename):
    mach = mach_module.get_mach()
    out = StringIO()
    out.encoding = None
    mach.run(['compileflags', filename], stdout=out, stderr=out)

    flag_list = shlex.split(out.getvalue())

    # This flag is added by Fennec for android build and causes ycmd to fail to parse the file.
    # Removing this flag is a workaround until ycmd starts to handle this flag properly.
    # https://github.com/Valloric/YouCompleteMe/issues/1490
    final_flags = [x for x in flag_list if not x.startswith('-march=armv')]

    return {
        'flags': final_flags,
        'do_cache': True
    }
back to top