diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-11-30 12:55:21 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-11-30 12:55:21 -0500 |
commit | 7406a31bca0dcbf6a75f1031637594dd5eff633c (patch) | |
tree | 7973f35e3bee3fc59735fe452e97a914085ccd58 /application/palemoon/app/moz.build | |
parent | ac6c6be1ca6f0719db7c7518f620ddde1b733ee0 (diff) | |
download | UXP-7406a31bca0dcbf6a75f1031637594dd5eff633c.tar UXP-7406a31bca0dcbf6a75f1031637594dd5eff633c.tar.gz UXP-7406a31bca0dcbf6a75f1031637594dd5eff633c.tar.lz UXP-7406a31bca0dcbf6a75f1031637594dd5eff633c.tar.xz UXP-7406a31bca0dcbf6a75f1031637594dd5eff633c.zip |
Issue #889 - Clean up the Pale Moon tree - Part 2a: Make moz.build consistent
Diffstat (limited to 'application/palemoon/app/moz.build')
-rw-r--r-- | application/palemoon/app/moz.build | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/application/palemoon/app/moz.build b/application/palemoon/app/moz.build index 8b358b622..c11f4c37e 100644 --- a/application/palemoon/app/moz.build +++ b/application/palemoon/app/moz.build @@ -6,7 +6,6 @@ DIRS += ['profile/extensions'] - GeckoProgram(CONFIG['MOZ_APP_NAME']) JS_PREFERENCE_PP_FILES += [ @@ -18,18 +17,14 @@ if CONFIG['LIBXUL_SDK']: 'profile/channel-prefs.js', ] -SOURCES += [ - 'nsBrowserApp.cpp', -] +SOURCES += ['nsBrowserApp.cpp'] FINAL_TARGET_FILES += ['blocklist.xml'] FINAL_TARGET_FILES.defaults.profile += ['profile/prefs.js'] DEFINES['APP_VERSION'] = CONFIG['MOZ_APP_VERSION'] -LOCAL_INCLUDES += [ - '!/build', -] +LOCAL_INCLUDES += ['!/build'] LOCAL_INCLUDES += [ '/toolkit/xre', @@ -37,9 +32,7 @@ LOCAL_INCLUDES += [ '/xpcom/build', ] -USE_LIBS += [ - 'mozglue', -] +USE_LIBS += ['mozglue'] if CONFIG['_MSC_VER']: # Always enter a Windows program through wmain, whether or not we're |