diff options
author | Matt A. Tobin <email@mattatobin.com> | 2019-04-17 04:58:14 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2019-04-17 04:58:14 -0400 |
commit | 1e868fadf94935bcb4a49ea5eec776d84fe2d1e7 (patch) | |
tree | 508827a64a5ad5c2d465535afea68eee39775a11 /application/basilisk | |
parent | 7008afd8e0c91fa97f37f0cf72b4a225e681c4be (diff) | |
download | UXP-1e868fadf94935bcb4a49ea5eec776d84fe2d1e7.tar UXP-1e868fadf94935bcb4a49ea5eec776d84fe2d1e7.tar.gz UXP-1e868fadf94935bcb4a49ea5eec776d84fe2d1e7.tar.lz UXP-1e868fadf94935bcb4a49ea5eec776d84fe2d1e7.tar.xz UXP-1e868fadf94935bcb4a49ea5eec776d84fe2d1e7.zip |
[BASILISK] Port PM Sync Client - Part 6b: Don't build the sync client ui when it is disabled, duh.
Diffstat (limited to 'application/basilisk')
-rw-r--r-- | application/basilisk/components/moz.build | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/application/basilisk/components/moz.build b/application/basilisk/components/moz.build index 6c6cca9df..a9c29936b 100644 --- a/application/basilisk/components/moz.build +++ b/application/basilisk/components/moz.build @@ -19,10 +19,12 @@ DIRS += [ 'sessionstore', 'shell', 'selfsupport', - 'sync', 'translation', ] +if CONFIG['MOZ_SERVICES_SYNC']: + DIRS += ['sync'] + DIRS += ['build'] XPIDL_SOURCES += [ |