From a6417f1e52edbc17e0ef005bd4b08203e91c772c Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Thu, 25 Apr 2019 15:04:16 -0700 Subject: [PATCH] Migrate from Folly Format to fmt Summary: Migrate from Folly Format to fmt which provides smaller compile times and per-call binary code size. Reviewed By: alandau Differential Revision: D14954926 fbshipit-source-id: 9d2c39e74a5d11e0f90c8ad0d71b79424c56747f --- build/fbcode_builder/specs/fbthrift.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build/fbcode_builder/specs/fbthrift.py b/build/fbcode_builder/specs/fbthrift.py index f42f88d19..d982fc798 100644 --- a/build/fbcode_builder/specs/fbthrift.py +++ b/build/fbcode_builder/specs/fbthrift.py @@ -7,6 +7,7 @@ from __future__ import unicode_literals import specs.folly as folly import specs.fizz as fizz +import specs.fmt as fmt import specs.rsocket as rsocket import specs.sodium as sodium import specs.wangle as wangle @@ -22,7 +23,7 @@ def fbcode_builder_spec(builder): ShellQuoted('$(git describe --abbrev=0 --tags)') ) return { - 'depends_on': [folly, fizz, sodium, rsocket, wangle, zstd], + 'depends_on': [folly, fizz, fmt, sodium, rsocket, wangle, zstd], 'steps': [ # This isn't a separete spec, since only fbthrift uses mstch. builder.github_project_workdir('no1msd/mstch', 'build'),