mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 05:41:12 +00:00
e90bd4aabb
MozReview-Commit-ID: 63yJGdgPbhe --HG-- extra : rebase_source : 2256e0a12588703a83f4cba06971231ac3c64592 extra : amend_source : 1f35a04191f37225986bd7ff4d0b6b2c34a71b05 extra : histedit_source : 82d351700936c8e1297eeca91ce00f96340e2f2c
21 lines
709 B
Python
21 lines
709 B
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/.
|
|
|
|
Program(CONFIG['MOZ_APP_NAME'])
|
|
|
|
if CONFIG['OS_ARCH'] == 'WINNT':
|
|
SOURCES += [
|
|
'run-b2g.cpp',
|
|
]
|
|
DEFINES['B2G_NAME'] = 'L"%s-bin%s"' % (PROGRAM, CONFIG['BIN_SUFFIX'])
|
|
DEFINES['GAIA_PATH'] = 'L"gaia\\\\profile"'
|
|
else:
|
|
SOURCES += [
|
|
'run-b2g.c',
|
|
]
|
|
DEFINES['B2G_NAME'] = '"%s-bin%s"' % (PROGRAM, CONFIG['BIN_SUFFIX'])
|
|
DEFINES['GAIA_PATH'] = '"gaia/profile"'
|